1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
require 'rails_helper'
RSpec.describe Spree::Admin::SubscriptionsController, type: :controller do
routes { Spree::Core::Engine.routes }
stub_authorization!
describe 'get /admin/subscriptions' do
subject { get :index }
it { is_expected.to be_successful }
end
describe 'GET :new' do
subject { get :new }
it { is_expected.to be_successful }
end
describe 'POST cancel' do
subject { delete :cancel, params: { id: subscription.id } }
context 'the subscription can be canceled' do
let(:subscription) { create :subscription, :actionable }
it { is_expected.to redirect_to admin_subscriptions_path }
it 'has a message' do
subject
expect(flash[:notice]).to be_present
end
it 'cancels the subscription' do
expect { subject }.to change { subscription.reload.state }.from('active').to('canceled')
end
end
context 'the subscription cannot be canceled' do
let(:subscription) { create :subscription, :canceled }
it { is_expected.to redirect_to admin_subscriptions_path }
it 'has a message' do
subject
expect(flash[:notice]).to be_present
end
it 'cancels the subscription' do
expect { subject }.to_not change { subscription.reload.state }
end
end
end
describe 'POST activate' do
subject { post :activate, params: { id: subscription.id } }
context 'the subscription can be activated' do
let(:subscription) { create :subscription, :canceled, :with_line_item }
it { is_expected.to redirect_to admin_subscriptions_path }
it 'has a message' do
subject
expect(flash[:notice]).to be_present
end
it 'cancels the subscription' do
expect { subject }.to change { subscription.reload.state }.from('canceled').to('active')
end
end
context 'the subscription cannot be activated' do
let(:subscription) { create :subscription, :actionable, :with_line_item }
it { is_expected.to redirect_to admin_subscriptions_path }
it 'has a message' do
subject
expect(flash[:notice]).to be_present
end
it 'cancels the subscription' do
expect { subject }.to_not change { subscription.reload.state }
end
end
end
describe 'POST skip' do
subject { post :skip, params: { id: subscription.id } }
let(:subscription) { create :subscription, :actionable, :with_line_item }
let!(:expected_date) { subscription.next_actionable_date }
it { is_expected.to redirect_to admin_subscriptions_path }
it 'has a message' do
subject
expect(flash[:notice]).to be_present
end
it 'advances the actioanble_date' do
expect { subject }.
to change { subscription.reload.actionable_date }.
from(subscription.actionable_date).to(expected_date)
end
end
end
|