|
17 | 17 |
|
18 | 18 | describe "GET #show" do
|
19 | 19 | context "when given invalid emails" do
|
20 |
| - it "renders" do |
21 |
| - get :show, params: { email: "[email protected]" } |
22 |
| - expect(response).to render_template("show") |
| 20 | + it "redirects to index with error" do |
| 21 | + message = "You can search for the email address you signed up with below. If you can't find it, your invitation may have already been emailed to that address; please check your email spam folder as your spam filters may have placed it there." |
| 22 | + get :show, params: { id: 0 } |
| 23 | + it_redirects_to_with_error(status_invite_requests_path, message) |
| 24 | + expect(assigns(:invite_request)).to be_nil |
| 25 | + get :show, params: { id: 0, email: "[email protected]" } |
| 26 | + it_redirects_to_with_error(status_invite_requests_path, message) |
23 | 27 | expect(assigns(:invite_request)).to be_nil
|
24 | 28 | end
|
25 | 29 |
|
26 | 30 | it "renders for an ajax call" do
|
27 |
| - get :show, params: { email: "[email protected]" }, xhr: true |
| 31 | + get :show, params: { id: 0 }, xhr: true |
| 32 | + expect(response).to render_template("show") |
| 33 | + expect(assigns(:invite_request)).to be_nil |
| 34 | + get :show, params: { id: 0, email: "[email protected]" }, xhr: true |
28 | 35 | expect(response).to render_template("show")
|
29 | 36 | expect(assigns(:invite_request)).to be_nil
|
30 | 37 | end
|
|
34 | 41 | let(:invite_request) { create(:invite_request) }
|
35 | 42 |
|
36 | 43 | it "renders" do
|
37 |
| - get :show, params: { email: invite_request.email } |
| 44 | + get :show, params: { id: 0, email: invite_request.email } |
38 | 45 | expect(response).to render_template("show")
|
39 | 46 | expect(assigns(:invite_request)).to eq(invite_request)
|
40 | 47 | end
|
41 | 48 |
|
42 | 49 | it "renders for an ajax call" do
|
43 |
| - get :show, params: { email: invite_request.email }, xhr: true |
| 50 | + get :show, params: { id: 0, email: invite_request.email }, xhr: true |
44 | 51 | expect(response).to render_template("show")
|
45 | 52 | expect(assigns(:invite_request)).to eq(invite_request)
|
46 | 53 | end
|
47 | 54 | end
|
48 | 55 | end
|
49 | 56 |
|
50 |
| - describe "POST #resend" do |
51 |
| - context "when the email doesn't match any invitations" do |
52 |
| - it "redirects with an error" do |
53 |
| - post :resend, params: { email: "[email protected]" } |
54 |
| - it_redirects_to_with_error(status_invite_requests_path, |
55 |
| - "Could not find an invitation associated with that email.") |
56 |
| - end |
57 |
| - end |
58 |
| - |
59 |
| - context "when the invitation is too recent" do |
60 |
| - let(:invitation) { create(:invitation) } |
61 |
| - |
62 |
| - it "redirects with an error" do |
63 |
| - post :resend, params: { email: invitation.invitee_email } |
64 |
| - it_redirects_to_with_error(status_invite_requests_path, |
65 |
| - "You cannot resend an invitation that was sent in the last 24 hours.") |
66 |
| - end |
67 |
| - end |
68 |
| - |
69 |
| - context "when the email and time are valid" do |
70 |
| - let!(:invitation) { create(:invitation) } |
71 |
| - |
72 |
| - it "redirects with a success message" do |
73 |
| - travel_to((1 + ArchiveConfig.HOURS_BEFORE_RESEND_INVITATION).hours.from_now) |
74 |
| - post :resend, params: { email: invitation.invitee_email } |
75 |
| - |
76 |
| - it_redirects_to_with_notice(status_invite_requests_path, |
77 |
| - "Invitation resent to #{invitation.invitee_email}.") |
78 |
| - end |
79 |
| - end |
80 |
| - end |
81 |
| - |
82 | 57 | describe "POST #create" do
|
83 | 58 | it "redirects to index with error given invalid emails" do
|
84 | 59 | post :create, params: { invite_request: { email: "wat" } }
|
|
0 commit comments