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
|
describe Organisation, :type => :model do
it { should validate_presence_of(:name) }
it { should validate_uniqueness_of(:code) }
subject { build_stubbed :organisation }
it 'has a valid factory' do
expect_it.to be_valid
end
context 'lines_set' do
it 'has no lines' do
expect( subject.lines_set ).to eq(Set.new())
end
it 'has two lines' do
expect( build_stubbed(:org_with_lines).lines_set ).to eq(Set.new(%w{C00109 C00108}))
end
end
# it "create a rule_parameter_set" do
# organisation = create(:organisation)
# expect(organisation.rule_parameter_sets.size).to eq(1)
# end
describe "Portail sync" do
let(:conf) { Rails.application.config.stif_portail_api }
before :each do
stub_request(:get, "#{conf[:url]}/api/v1/organizations").
with(stub_headers(authorization_token: conf[:key])).
to_return(body: File.open(File.join(Rails.root, 'spec', 'fixtures', 'organizations.json')), status: 200)
end
it 'should retrieve data from portail api' do
expect(Organisation.portail_api_request).to be_truthy
expect(WebMock).to have_requested(:get, "#{conf[:url]}/api/v1/organizations").
with(headers: { 'Authorization' => "Token token=\"#{conf[:key]}\"" })
end
it 'should create new organisations' do
expect{Organisation.portail_sync}.to change{ Organisation.count }.by(5)
expect(Organisation.all.map(&:name)).to include 'ALBATRANS', 'OPTILE', 'SNCF', 'STIF'
end
it 'should retrieve functional scope' do
Organisation.portail_sync
org = Organisation.find_by(code: 'RATP')
expect(org.sso_attributes['functional_scope']).to eq "[\"STIF:CODIFLIGNE:Line:C00840\", \"STIF:CODIFLIGNE:Line:C00086\"]"
end
it 'should update existing organisations' do
create :organisation, name: 'dummy_name', code:'RATP', updated_at: 10.days.ago, sso_attributes: {functional_scope: "[\"STIF:CODIFLIGNE:Line:C00840\"]"}
Organisation.portail_sync
org = Organisation.find_by(code: 'RATP')
expect(org.name).to eq('RATP')
expect(org.updated_at.utc).to be_within(1.second).of Time.now
expect(org.synced_at.utc).to be_within(1.second).of Time.now
expect(org.sso_attributes['functional_scope']).to eq "[\"STIF:CODIFLIGNE:Line:C00840\", \"STIF:CODIFLIGNE:Line:C00086\"]"
end
it 'should not create organisation if code is already present' do
create :organisation, code:'RATP'
expect{Organisation.portail_sync}.to change{ Organisation.count }.by(4)
end
end
describe "#has_feature?" do
let(:organisation) { Organisation.new }
it 'return false if Organisation features is nil' do
organisation.features = nil
expect(organisation.has_feature?(:dummy)).to be_falsy
end
it 'return true if Organisation features contains given feature' do
organisation.features = %w{present}
expect(organisation.has_feature?(:present)).to be_truthy
end
it "return false if Organisation features doesn't contains given feature" do
organisation.features = %w{other}
expect(organisation.has_feature?(:absent)).to be_falsy
end
end
end
|