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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
|
# coding: utf-8
require 'spec_helper'
describe Chouette::VehicleJourney, :type => :model do
subject { create(:vehicle_journey) }
it { should have_and_belong_to_many(:purchase_windows) }
it "must be valid with an at-stop day offset of 1" do
vehicle_journey = create(
:vehicle_journey,
stop_arrival_time: '23:00:00',
stop_departure_time: '23:00:00'
)
vehicle_journey.vehicle_journey_at_stops.last.update(
arrival_time: '00:30:00',
departure_time: '00:30:00',
arrival_day_offset: 1,
departure_day_offset: 1
)
expect(vehicle_journey).to be_valid
end
describe 'checksum' do
it_behaves_like 'checksum support'
it "changes when a vjas is updated" do
vehicle_journey = create(:vehicle_journey)
expect{vehicle_journey.vehicle_journey_at_stops.last.update_attribute(:departure_time, Time.now)}.to change{vehicle_journey.reload.checksum}
end
it "changes when a vjas is added" do
vehicle_journey = create(:vehicle_journey)
expect(vehicle_journey).to receive(:update_checksum_without_callbacks!).at_least(:once).and_call_original
expect{create(:vehicle_journey_at_stop, vehicle_journey: vehicle_journey)}.to change{vehicle_journey.checksum}
end
it "changes when a vjas is deleted" do
vehicle_journey = create(:vehicle_journey)
3.times do
create(:vehicle_journey_at_stop, vehicle_journey: vehicle_journey).run_callbacks(:commit)
end
vjas = vehicle_journey.vehicle_journey_at_stops.last
expect(vehicle_journey).to receive(:update_checksum_without_callbacks!).at_least(:once).and_call_original
expect{vjas.destroy; vjas.run_callbacks(:commit)}.to change{vehicle_journey.reload.checksum}
end
context "when custom_field_values change" do
let(:vehicle_journey){ create(:vehicle_journey, custom_field_values: {custom_field.code.to_s => former_value}) }
let(:custom_field){ create :custom_field, field_type: :string, code: :energy, name: :energy, resource_type: "VehicleJourney" }
let(:former_value){ "foo" }
let(:value){ "bar" }
before do
@checksum_source = vehicle_journey.checksum_source
end
it "should update the checksum" do
vehicle_journey.custom_field_values = {custom_field.code.to_s => value}
vehicle_journey.save
expect(vehicle_journey.checksum_source).to_not eq @checksum_source
end
context "with an attachment custom_field" do
let(:vehicle_journey) do
custom_field
vj = create(:vehicle_journey)
vj.custom_field_energy = File.open(fixtures_path("test_1/file.txt"))
vj.save
vj
end
let(:custom_field){ create :custom_field, field_type: :attachment, code: :energy, name: :energy, resource_type: "VehicleJourney" }
it "should update the checksum" do
expect(CustomField::Instance::Attachment).to receive(:digest).and_call_original
vehicle_journey.custom_field_energy = File.open(fixtures_path("test_2/file.txt"))
vehicle_journey.save
expect(vehicle_journey.checksum_source).to_not eq @checksum_source
end
it "should not calculate the digest if the vale does not change" do
expect(CustomField::Instance::Attachment).to_not receive(:digest).and_call_original
vehicle_journey.reload.save
expect(vehicle_journey.checksum_source).to eq @checksum_source
end
end
end
end
describe "#with_stop_area_ids" do
subject(:result){Chouette::VehicleJourney.with_stop_area_ids(ids)}
let(:ids){[]}
let(:common_stop_area){ create :stop_area}
let!(:journey_1){ create :vehicle_journey }
let!(:journey_2){ create :vehicle_journey }
before(:each) do
journey_1.journey_pattern.stop_points.last.update_attribute :stop_area_id, common_stop_area.id
journey_2.journey_pattern.stop_points.last.update_attribute :stop_area_id, common_stop_area.id
expect(journey_1.stop_areas).to include(common_stop_area)
expect(journey_2.stop_areas).to include(common_stop_area)
end
context "with no value" do
it "should return all journeys" do
expect(result).to eq Chouette::VehicleJourney.all
end
end
context "with a single value" do
let(:ids){[journey_1.stop_areas.first.id]}
it "should return all journeys" do
expect(result).to eq [journey_1]
end
context "with a common area" do
let(:ids){[common_stop_area.id]}
it "should return all journeys" do
expect(result.to_a.sort).to eq [journey_1, journey_2].sort
end
end
end
context "with a couple of values" do
let(:ids){[journey_1.stop_areas.first.id, common_stop_area.id]}
it "should return only the matching journeys" do
expect(result).to eq [journey_1]
end
end
end
describe '#in_purchase_window' do
let(:start_date){2.month.ago.to_date}
let(:end_date){1.month.ago.to_date}
subject{Chouette::VehicleJourney.in_purchase_window start_date..end_date}
let!(:without_purchase_window){ create :vehicle_journey }
let!(:without_matching_purchase_window){
pw = create :purchase_window, referential: Referential.first, date_ranges: [(end_date+1.day..end_date+2.days)]
pw2 = create :purchase_window, referential: Referential.first, date_ranges: [(end_date+10.day..end_date+20.days)]
create :vehicle_journey, purchase_windows: [pw, pw2]
}
let!(:included_purchase_window){
pw = create :purchase_window, referential: Referential.first, date_ranges: [(start_date..end_date)]
pw2 = create :purchase_window, referential: Referential.first
create :vehicle_journey, purchase_windows: [pw, pw2]
}
let!(:overlapping_purchase_window){
pw = create :purchase_window, referential: Referential.first, date_ranges: [(end_date..end_date+1.day)]
pw2 = create :purchase_window, referential: Referential.first
create :vehicle_journey, purchase_windows: [pw, pw2]
}
it "should not include VJ with no purchase window" do
expect(subject).to_not include without_purchase_window
end
it "should not include VJ with no matching purchase window" do
expect(subject).to_not include without_matching_purchase_window
end
it "should include VJ with included purchase window" do
expect(subject).to include included_purchase_window
end
it "should include VJ with overlapping purchase_window purchase window" do
expect(subject).to include overlapping_purchase_window
end
end
describe '#in_time_table' do
let(:start_date){2.month.ago.to_date}
let(:end_date){1.month.ago.to_date}
subject{Chouette::VehicleJourney.with_matching_timetable start_date..end_date}
context "without time table" do
let!(:vehicle_journey){ create :vehicle_journey }
it "should not include VJ " do
expect(subject).to_not include vehicle_journey
end
end
context "without a time table matching on a regular day" do
let(:timetable){
period = create :time_table_period, period_start: start_date-2.day, period_end: start_date
create :time_table, periods: [period], dates_count: 0
}
let!(:vehicle_journey){ create :vehicle_journey, time_tables: [timetable] }
it "should include VJ " do
expect(subject).to include vehicle_journey
end
end
context "without a time table matching on a regular day" do
let(:timetable){
period = create :time_table_period, period_start: end_date, period_end: end_date+1.day
create :time_table, periods: [period], dates_count: 0
}
let!(:vehicle_journey){ create :vehicle_journey, time_tables: [timetable] }
it "should include VJ " do
expect(subject).to include vehicle_journey
end
end
context "with a time table with a matching period but not the right day" do
let(:start_date){end_date - 1.day}
let(:end_date){Time.now.end_of_week.to_date}
let(:timetable){
period = create :time_table_period, period_start: start_date-1.month, period_end: end_date+1.month
create :time_table, periods: [period], int_day_types: 4 + 8, dates_count: 0
}
let!(:vehicle_journey){ create :vehicle_journey, time_tables: [timetable] }
it "should not include VJ " do
expect(subject).to_not include vehicle_journey
end
end
context "with a time table with a matching period but day opted-out" do
let(:start_date){end_date - 1.day}
let(:end_date){Time.now.end_of_week.to_date}
let(:timetable){
tt = create :time_table, dates_count: 0, periods_count: 0
create :time_table_period, period_start: start_date-1.month, period_end: start_date-1.day, time_table: tt
create(:time_table_date, :date => start_date, in_out: false, time_table: tt)
tt
}
let!(:vehicle_journey){ create :vehicle_journey, time_tables: [timetable] }
it "should not include VJ " do
expect(subject).to_not include vehicle_journey
end
end
context "with a time table with no matching period but not the right extra day" do
let(:start_date){end_date - 1.day}
let(:end_date){Time.now.end_of_week.to_date}
let(:timetable){
tt = create :time_table, dates_count: 0, periods_count: 0
create :time_table_period, period_start: start_date-1.month, period_end: start_date-1.day, time_table: tt
create(:time_table_date, :date => start_date, in_out: true, time_table: tt)
tt
}
let!(:vehicle_journey){ create :vehicle_journey, time_tables: [timetable] }
it "should include VJ " do
expect(subject).to include vehicle_journey
end
end
end
describe "vjas_departure_time_must_be_before_next_stop_arrival_time",
skip: "Validation currently commented out because it interferes with day offsets" do
let(:vehicle_journey) { create :vehicle_journey }
let(:vjas) { vehicle_journey.vehicle_journey_at_stops }
it 'should add errors a stop departure_time is greater then next stop arrival time' do
vjas[0][:departure_time] = vjas[1][:arrival_time] + 1.minute
vehicle_journey.validate
expect(vjas[0].errors[:departure_time]).not_to be_blank
expect(vehicle_journey.errors.count).to eq(1)
expect(vehicle_journey).not_to be_valid
end
it 'should consider valid to have departure_time equal to next stop arrival time' do
vjas[0][:departure_time] = vjas[1][:arrival_time]
vehicle_journey.validate
expect(vjas[0].errors[:departure_time]).to be_blank
expect(vehicle_journey.errors).to be_empty
expect(vehicle_journey).to be_valid
end
it 'should not add errors when departure_time is less then next stop arrival time' do
vehicle_journey.validate
vjas.each do |stop|
expect(stop.errors).to be_empty
end
expect(vehicle_journey).to be_valid
end
end
describe "state_update" do
def vehicle_journey_at_stop_to_state vjas
at_stop = {'stop_area_object_id' => vjas.stop_point.stop_area.objectid }
[:id, :connecting_service_id, :boarding_alighting_possibility].map do |att|
at_stop[att.to_s] = vjas.send(att) unless vjas.send(att).nil?
end
at_stop["stop_point_objectid"] = vjas&.stop_point&.objectid
[:arrival, :departure].map do |att|
at_stop["#{att}_time"] = {
'hour' => vjas.send("#{att}_local_time").strftime('%H'),
'minute' => vjas.send("#{att}_local_time").strftime('%M'),
}
end
at_stop
end
def vehicle_journey_to_state vj
vj.slice('objectid', 'published_journey_name', 'journey_pattern_id', 'company_id').tap do |item|
item['vehicle_journey_at_stops'] = []
item['time_tables'] = []
item['purchase_windows'] = []
item['footnotes'] = []
item['purchase_windows'] = []
item['custom_fields'] = vj.custom_fields.to_hash
vj.vehicle_journey_at_stops.each do |vjas|
item['vehicle_journey_at_stops'] << vehicle_journey_at_stop_to_state(vjas)
end
end
end
let(:route) { create :route }
let(:journey_pattern) { create :journey_pattern, route: route }
let(:vehicle_journey) { create :vehicle_journey, route: route, journey_pattern: journey_pattern }
let(:state) { vehicle_journey_to_state(vehicle_journey) }
let(:collection) { [state] }
it 'should create new vj from state' do
create(:custom_field, code: :energy)
new_vj = build(:vehicle_journey, objectid: nil, published_journey_name: 'dummy', route: route, journey_pattern: journey_pattern, custom_field_values: {energy: 99})
collection << vehicle_journey_to_state(new_vj)
expect {
Chouette::VehicleJourney.state_update(route, collection)
}.to change {Chouette::VehicleJourney.count}.by(1)
obj = Chouette::VehicleJourney.last
expect(obj).to receive(:after_commit_objectid).and_call_original
# For some reason we have to force it
obj.after_commit_objectid
obj.run_callbacks(:commit)
expect(collection.last['objectid']).to eq obj.objectid
expect(obj.published_journey_name).to eq 'dummy'
expect(obj.custom_fields["energy"].value).to eq 99
end
it 'should expect local times' do
new_vj = build(:vehicle_journey, objectid: nil, published_journey_name: 'dummy', route: route, journey_pattern: journey_pattern)
stop_area = create(:stop_area, time_zone: "Mexico City")
stop_point = create(:stop_point, stop_area: stop_area)
new_vj.vehicle_journey_at_stops << build(:vehicle_journey_at_stop, vehicle_journey: vehicle_journey, stop_point: stop_point)
data = vehicle_journey_to_state(new_vj)
data['vehicle_journey_at_stops'][0]["departure_time"]["hour"] = "15"
data['vehicle_journey_at_stops'][0]["arrival_time"]["hour"] = "12"
collection << data
expect {
Chouette::VehicleJourney.state_update(route, collection)
}.to change {Chouette::VehicleJourney.count}.by(1)
created = Chouette::VehicleJourney.last.vehicle_journey_at_stops.last
expect(created.stop_point).to eq stop_point
expect(created.departure_local_time.hour).to_not eq created.departure_time.hour
expect(created.arrival_local_time.hour).to_not eq created.arrival_time.hour
expect(created.departure_local_time.hour).to eq 15
expect(created.arrival_local_time.hour).to eq 12
end
it 'should save vehicle_journey_at_stops of newly created vj' do
new_vj = build(:vehicle_journey, objectid: nil, published_journey_name: 'dummy', route: route, journey_pattern: journey_pattern)
new_vj.vehicle_journey_at_stops << build(:vehicle_journey_at_stop,
:vehicle_journey => new_vj,
:stop_point => create(:stop_point),
:arrival_time => '2000-01-01 01:00:00 UTC',
:departure_time => '2000-01-01 03:00:00 UTC')
collection << vehicle_journey_to_state(new_vj)
expect {
Chouette::VehicleJourney.state_update(route, collection)
}.to change {Chouette::VehicleJourneyAtStop.count}.by(1)
end
it 'should not save vehicle_journey_at_stops of newly created vj if all departure time is set to 00:00' do
new_vj = build(:vehicle_journey, objectid: nil, published_journey_name: 'dummy', route: route, journey_pattern: journey_pattern)
2.times do
new_vj.vehicle_journey_at_stops << build(:vehicle_journey_at_stop,
:vehicle_journey => new_vj,
:stop_point => create(:stop_point),
:arrival_time => '2000-01-01 00:00:00 UTC',
:departure_time => '2000-01-01 00:00:00 UTC')
end
collection << vehicle_journey_to_state(new_vj)
expect {
Chouette::VehicleJourney.state_update(route, collection)
}.not_to change {Chouette::VehicleJourneyAtStop.count}
end
it 'should update vj journey_pattern association' do
state['journey_pattern'] = create(:journey_pattern).slice('id', 'name', 'objectid')
Chouette::VehicleJourney.state_update(route, collection)
expect(state['errors']).to be_nil
expect(vehicle_journey.reload.journey_pattern_id).to eq state['journey_pattern']['id']
end
it 'should update vj time_tables association from state' do
2.times{state['time_tables'] << create(:time_table).slice('id', 'comment', 'objectid')}
vehicle_journey.update_has_and_belongs_to_many_from_state(state)
expected = state['time_tables'].map{|tt| tt['id']}
actual = vehicle_journey.reload.time_tables.map(&:id)
expect(actual).to match_array(expected)
end
it 'should clear vj time_tableas association when remove from state' do
vehicle_journey.time_tables << create(:time_table)
state['time_tables'] = []
vehicle_journey.update_has_and_belongs_to_many_from_state(state)
expect(vehicle_journey.reload.time_tables).to be_empty
end
it 'should update vj purchase_windows association from state' do
2.times{state['purchase_windows'] << create(:purchase_window, referential: referential).slice('id', 'name', 'objectid', 'color')}
vehicle_journey.update_has_and_belongs_to_many_from_state(state)
expected = state['purchase_windows'].map{|tt| tt['id']}
actual = vehicle_journey.reload.purchase_windows.map(&:id)
expect(actual).to match_array(expected)
end
it 'should clear vj purchase_windows association when remove from state' do
vehicle_journey.purchase_windows << create(:purchase_window, referential: referential)
state['purchase_windows'] = []
vehicle_journey.update_has_and_belongs_to_many_from_state(state)
expect(vehicle_journey.reload.purchase_windows).to be_empty
end
it 'should update vj footnote association from state' do
2.times{state['footnotes'] << create(:footnote, line: route.line).slice('id', 'code', 'label', 'line_id')}
vehicle_journey.update_has_and_belongs_to_many_from_state(state)
expect(vehicle_journey.reload.footnotes.map(&:id)).to eq(state['footnotes'].map{|tt| tt['id']})
end
it 'should clear vj footnote association from state' do
vehicle_journey.footnotes << create(:footnote)
state['footnotes'] = []
vehicle_journey.update_has_and_belongs_to_many_from_state(state)
expect(vehicle_journey.reload.footnotes).to be_empty
end
it 'should update vj company' do
state['company'] = create(:company).slice('id', 'name', 'objectid')
Chouette::VehicleJourney.state_update(route, collection)
expect(state['errors']).to be_nil
expect(vehicle_journey.reload.company_id).to eq state['company']['id']
end
it "handles vehicle journey company deletion" do
vehicle_journey.update(company: create(:company))
state.delete('company')
Chouette::VehicleJourney.state_update(route, collection)
expect(vehicle_journey.reload.company_id).to be_nil
end
it 'should update vj attributes from state' do
state['published_journey_name'] = 'edited_name'
state['published_journey_identifier'] = 'edited_identifier'
state['custom_fields'] = {energy: {value: 99}}
create :custom_field, field_type: :integer, code: :energy, name: :energy
Chouette::VehicleJourney.state_update(route, collection)
expect(state['errors']).to be_nil
expect(vehicle_journey.reload.published_journey_name).to eq state['published_journey_name']
expect(vehicle_journey.reload.published_journey_identifier).to eq state['published_journey_identifier']
expect(vehicle_journey.reload.custom_field_value("energy")).to eq 99
end
it 'should return errors when validation failed' do
state['published_journey_name'] = 'edited_name'
state['vehicle_journey_at_stops'].last['departure_time']['hour'] = '23'
expect {
Chouette::VehicleJourney.state_update(route, collection)
}.not_to change(vehicle_journey, :published_journey_name)
expect(state['vehicle_journey_at_stops'].last['errors']).not_to be_empty
end
it 'should delete vj with deletable set to true from state' do
state['deletable'] = true
collection = [state]
Chouette::VehicleJourney.state_update(route, collection)
expect(collection).to be_empty
end
describe 'vehicle_journey_at_stops' do
it 'should update departure_time' do
item = state['vehicle_journey_at_stops'].first
item['departure_time']['hour'] = "02"
item['departure_time']['minute'] = "15"
vehicle_journey.update_vjas_from_state(state['vehicle_journey_at_stops'])
stop = vehicle_journey.vehicle_journey_at_stops.find(item['id'])
expect(stop.departure_time.strftime('%H')).to eq item['departure_time']['hour']
expect(stop.departure_time.strftime('%M')).to eq item['departure_time']['minute']
end
it 'should update arrival_time' do
item = state['vehicle_journey_at_stops'].first
item['arrival_time']['hour'] = (item['departure_time']['hour'].to_i - 1).to_s
item['arrival_time']['minute'] = Time.now.strftime('%M')
vehicle_journey.update_vjas_from_state(state['vehicle_journey_at_stops'])
stop = vehicle_journey.vehicle_journey_at_stops.find(item['id'])
expect(stop.arrival_time.strftime('%H').to_i).to eq item['arrival_time']['hour'].to_i
expect(stop.arrival_time.strftime('%M')).to eq item['arrival_time']['minute']
end
it 'should return errors when validation failed' do
# Arrival must be before departure time
item = state['vehicle_journey_at_stops'].first
item['arrival_time']['hour'] = "12"
item['departure_time']['hour'] = "11"
vehicle_journey.update_vjas_from_state(state['vehicle_journey_at_stops'])
expect(item['errors'][:arrival_time].size).to eq 1
end
end
describe '#vehicle_journey_at_stops_matrix' do
it 'should fill missing vjas with dummy vjas' do
vehicle_journey.journey_pattern.stop_points.delete_all
vehicle_journey.vehicle_journey_at_stops.delete_all
expect(vehicle_journey.reload.vehicle_journey_at_stops).to be_empty
at_stops = vehicle_journey.reload.vehicle_journey_at_stops_matrix
at_stops.map{|stop| expect(stop.id).to be_nil }
expect(at_stops.count).to eq route.stop_points.count
end
it 'should set dummy to false for active stop_points vjas' do
# Destroy vjas but stop_points is still active
# it should fill a new vjas without dummy flag
vehicle_journey.vehicle_journey_at_stops[3].destroy
at_stops = vehicle_journey.reload.vehicle_journey_at_stops_matrix
expect(at_stops[3].dummy).to be false
end
it 'should set dummy to true for deactivated stop_points vjas' do
vehicle_journey.journey_pattern.stop_points.delete(vehicle_journey.journey_pattern.stop_points.first)
at_stops = vehicle_journey.reload.vehicle_journey_at_stops_matrix
expect(at_stops.first.dummy).to be true
end
it 'should fill vjas for active stop_points without vjas yet' do
vehicle_journey.vehicle_journey_at_stops.destroy_all
at_stops = vehicle_journey.reload.vehicle_journey_at_stops_matrix
expect(at_stops.map(&:stop_point_id)).to eq vehicle_journey.journey_pattern.stop_points.map(&:id)
end
it 'should keep index order of vjas' do
vehicle_journey.vehicle_journey_at_stops[3].destroy
at_stops = vehicle_journey.reload.vehicle_journey_at_stops_matrix
expect(at_stops[3].id).to be_nil
at_stops.delete_at(3)
at_stops.each do |stop|
expect(stop.id).not_to be_nil
end
end
end
end
describe ".with_stops" do
def initialize_stop_times(vehicle_journey, &block)
vehicle_journey
.vehicle_journey_at_stops
.each_with_index do |at_stop, index|
at_stop.update(
departure_time: at_stop.departure_time + block.call(index),
arrival_time: at_stop.arrival_time + block.call(index)
)
end
end
it "selects vehicle journeys including stops in order or earliest departure time" do
# Create later vehicle journey to give it a later id, such that it should
# appear last if the order in the query isn't right.
journey_late = create(:vehicle_journey)
journey_early = create(
:vehicle_journey,
route: journey_late.route,
journey_pattern: journey_late.journey_pattern
)
initialize_stop_times(journey_early) do |index|
(index + 5).minutes
end
initialize_stop_times(journey_late) do |index|
(index + 65).minutes
end
expected_journey_order = [journey_early, journey_late]
expect(
journey_late
.route
.vehicle_journeys
.with_stops
.to_a
).to eq(expected_journey_order)
end
it "orders journeys with nil times at the end" do
journey_nil = create(:vehicle_journey_empty)
journey = create(
:vehicle_journey,
route: journey_nil.route,
journey_pattern: journey_nil.journey_pattern
)
expected_journey_order = [journey, journey_nil]
expect(
journey
.route
.vehicle_journeys
.with_stops
.to_a
).to eq(expected_journey_order)
end
it "journeys that skip the first stop(s) get ordered by the time of the \
first stop that they make" do
journey_missing_stop = create(:vehicle_journey)
journey_early = create(
:vehicle_journey,
route: journey_missing_stop.route,
journey_pattern: journey_missing_stop.journey_pattern
)
initialize_stop_times(journey_early) do |index|
(index + 5).minutes
end
initialize_stop_times(journey_missing_stop) do |index|
(index + 65).minutes
end
journey_missing_stop.vehicle_journey_at_stops.first.destroy
expected_journey_order = [journey_early, journey_missing_stop]
expect(
journey_missing_stop
.route
.vehicle_journeys
.with_stops
.to_a
).to eq(expected_journey_order)
end
end
describe ".where_departure_time_between" do
it "selects vehicle journeys whose departure times are between the specified range" do
journey_early = create(
:vehicle_journey,
stop_departure_time: '02:00:00'
)
route = journey_early.route
journey_pattern = journey_early.journey_pattern
journey_middle = create(
:vehicle_journey,
route: route,
journey_pattern: journey_pattern,
stop_departure_time: '03:00:00'
)
create(
:vehicle_journey,
route: route,
journey_pattern: journey_pattern,
stop_departure_time: '04:00:00'
)
expect(route
.vehicle_journeys
.select('DISTINCT "vehicle_journeys".*')
.joins('
LEFT JOIN "vehicle_journey_at_stops"
ON "vehicle_journey_at_stops"."vehicle_journey_id" =
"vehicle_journeys"."id"
')
.where_departure_time_between('02:30', '03:30')
.to_a
).to eq([journey_middle])
end
it "can include vehicle journeys that have nil stops" do
journey = create(:vehicle_journey_empty)
route = journey.route
expect(route
.vehicle_journeys
.select('DISTINCT "vehicle_journeys".*')
.joins('
LEFT JOIN "vehicle_journey_at_stops"
ON "vehicle_journey_at_stops"."vehicle_journey_id" =
"vehicle_journeys"."id"
')
.where_departure_time_between('02:30', '03:30', allow_empty: true)
.to_a
).to eq([journey])
end
it "uses an inclusive range" do
journey_early = create(
:vehicle_journey,
stop_departure_time: '03:00:00'
)
route = journey_early.route
journey_pattern = journey_early.journey_pattern
journey_late = create(
:vehicle_journey,
route: route,
journey_pattern: journey_pattern,
stop_departure_time: '04:00:00'
)
expect(route
.vehicle_journeys
.select('DISTINCT "vehicle_journeys".*')
.joins('
LEFT JOIN "vehicle_journey_at_stops"
ON "vehicle_journey_at_stops"."vehicle_journey_id" =
"vehicle_journeys"."id"
')
.where_departure_time_between('03:00', '04:00', allow_empty: true)
.to_a
).to match_array([journey_early, journey_late])
end
end
describe ".without_time_tables" do
it "selects only vehicle journeys that have no associated calendar" do
journey = create(:vehicle_journey)
route = journey.route
journey_with_time_table = create(
:vehicle_journey,
route: route,
journey_pattern: journey.journey_pattern
)
journey_with_time_table.time_tables << create(:time_table)
expect(
route
.vehicle_journeys
.without_time_tables
.to_a
).to eq([journey])
end
end
subject { create(:vehicle_journey_odd) }
describe "in_relation_to_a_journey_pattern methods" do
let!(:route) { create(:route)}
let!(:journey_pattern) { create(:journey_pattern, :route => route)}
let!(:journey_pattern_odd) { create(:journey_pattern_odd, :route => route)}
let!(:journey_pattern_even) { create(:journey_pattern_even, :route => route)}
context "when vehicle_journey is on odd stop whereas selected journey_pattern is on all stops" do
subject { create(:vehicle_journey, :route => route, :journey_pattern => journey_pattern_odd)}
describe "#extra_stops_in_relation_to_a_journey_pattern" do
it "should be empty" do
expect(subject.extra_stops_in_relation_to_a_journey_pattern( journey_pattern)).to be_empty
end
end
describe "#extra_vjas_in_relation_to_a_journey_pattern" do
it "should be empty" do
expect(subject.extra_vjas_in_relation_to_a_journey_pattern( journey_pattern)).to be_empty
end
end
describe "#missing_stops_in_relation_to_a_journey_pattern" do
it "should return even stops" do
result = subject.missing_stops_in_relation_to_a_journey_pattern( journey_pattern)
expect(result).to eq(journey_pattern_even.stop_points)
end
end
describe "#update_journey_pattern" do
it "should new_record for added vjas" do
subject.update_journey_pattern( journey_pattern)
subject.vehicle_journey_at_stops.select{ |vjas| vjas.new_record? }.each do |vjas|
expect(journey_pattern_even.stop_points).to include( vjas.stop_point)
end
end
it "should add vjas on each even stops" do
subject.update_journey_pattern( journey_pattern)
vehicle_stops = subject.vehicle_journey_at_stops.map(&:stop_point)
journey_pattern_even.stop_points.each do |sp|
expect(vehicle_stops).to include(sp)
end
end
it "should not mark any vjas as _destroy" do
subject.update_journey_pattern( journey_pattern)
expect(subject.vehicle_journey_at_stops.any?{ |vjas| vjas._destroy }).to be_falsey
end
end
end
context "when vehicle_journey is on all stops whereas selected journey_pattern is on odd stops" do
subject { create(:vehicle_journey, :route => route, :journey_pattern => journey_pattern)}
describe "#missing_stops_in_relation_to_a_journey_pattern" do
it "should be empty" do
expect(subject.missing_stops_in_relation_to_a_journey_pattern( journey_pattern_odd)).to be_empty
end
end
describe "#extra_stops_in_relation_to_a_journey_pattern" do
it "should return even stops" do
result = subject.extra_stops_in_relation_to_a_journey_pattern( journey_pattern_odd)
expect(result).to eq(journey_pattern_even.stop_points)
end
end
describe "#extra_vjas_in_relation_to_a_journey_pattern" do
it "should return vjas on even stops" do
result = subject.extra_vjas_in_relation_to_a_journey_pattern( journey_pattern_odd)
expect(result.map(&:stop_point)).to eq(journey_pattern_even.stop_points)
end
end
describe "#update_journey_pattern" do
it "should add no new vjas" do
subject.update_journey_pattern( journey_pattern_odd)
expect(subject.vehicle_journey_at_stops.any?{ |vjas| vjas.new_record? }).to be_falsey
end
it "should mark vehicle_journey_at_stops as _destroy on even stops" do
subject.update_journey_pattern( journey_pattern_odd)
subject.vehicle_journey_at_stops.each { |vjas|
expect(vjas._destroy).to eq(journey_pattern_even.stop_points.include?(vjas.stop_point))
}
end
end
end
end
context "when following departure times exceeds gap" do
describe "#update_attributes" do
let!(:params){ {"vehicle_journey_at_stops_attributes" => {
"0"=>{"id" => subject.vehicle_journey_at_stops[0].id ,"arrival_time" => 1.minutes.ago,"departure_time" => 1.minutes.ago},
"1"=>{"id" => subject.vehicle_journey_at_stops[1].id, "arrival_time" => (1.minutes.ago + 4.hour),"departure_time" => (1.minutes.ago + 4.hour)}
}}}
it "should return false", :skip => "Time gap validation is in pending status" do
expect(subject.update_attributes(params)).to be_falsey
end
it "should make instance invalid", :skip => "Time gap validation is in pending status" do
subject.update_attributes(params)
expect(subject).not_to be_valid
end
it "should let first vjas without any errors", :skip => "Time gap validation is in pending status" do
subject.update_attributes(params)
expect(subject.vehicle_journey_at_stops[0].errors).to be_empty
end
it "should add an error on second vjas", :skip => "Time gap validation is in pending status" do
subject.update_attributes(params)
expect(subject.vehicle_journey_at_stops[1].errors[:departure_time]).not_to be_blank
end
end
end
context "#time_table_tokens=" do
let!(:tm1){create(:time_table, :comment => "TM1")}
let!(:tm2){create(:time_table, :comment => "TM2")}
it "should return associated time table ids" do
subject.update_attributes :time_table_tokens => [tm1.id, tm2.id].join(',')
expect(subject.time_tables).to include( tm1)
expect(subject.time_tables).to include( tm2)
end
end
describe "#bounding_dates" do
before(:each) do
tm1 = build(:time_table, :dates =>
[ build(:time_table_date, :date => 1.days.ago.to_date, :in_out => true),
build(:time_table_date, :date => 2.days.ago.to_date, :in_out => true) ])
tm2 = build(:time_table, :periods =>
[ build(:time_table_period, :period_start => 4.days.ago.to_date, :period_end => 3.days.ago.to_date)])
tm3 = build(:time_table)
subject.time_tables = [ tm1, tm2, tm3]
end
it "should return min date from associated calendars" do
expect(subject.bounding_dates.min).to eq(4.days.ago.to_date)
end
it "should return max date from associated calendars" do
expect(subject.bounding_dates.max).to eq(1.days.ago.to_date)
end
end
context "#vehicle_journey_at_stops" do
it "should be ordered like stop_points on route" do
route = subject.route
vj_stop_ids = subject.vehicle_journey_at_stops.map(&:stop_point_id)
expected_order = route.stop_points.map(&:id).select {|s_id| vj_stop_ids.include?(s_id)}
expect(vj_stop_ids).to eq(expected_order)
end
end
describe "#footnote_ids=" do
context "when line have footnotes, " do
let!( :route) { create( :route ) }
let!( :line) { route.line }
let!( :footnote_first) {create( :footnote, :code => "1", :label => "dummy 1", :line => route.line)}
let!( :footnote_second) {create( :footnote, :code => "2", :label => "dummy 2", :line => route.line)}
it "should update vehicle's footnotes" do
expect(Chouette::VehicleJourney.find(subject.id).footnotes).to be_empty
subject.footnote_ids = [ footnote_first.id ]
subject.save
expect(Chouette::VehicleJourney.find(subject.id).footnotes.count).to eq(1)
end
end
end
def offset_passing_time time, offset
new_time = time + offset
"2000-01-01 #{new_time.hour}:#{new_time.min}:#{new_time.sec} UTC".to_time
end
describe "#fill_passing_times!" do
before do
start = create :stop_area
border = create :stop_area, kind: :non_commercial, area_type: :border
border_2 = create :stop_area, kind: :non_commercial, area_type: :border
middle = create :stop_area
border_3 = create :stop_area, kind: :non_commercial, area_type: :border
border_4 = create :stop_area, kind: :non_commercial, area_type: :border
_end = create :stop_area
journey_pattern = create :journey_pattern
journey_pattern.stop_points.destroy_all
journey_pattern.stop_points << start_point = create(:stop_point, stop_area: start, position: 0)
journey_pattern.stop_points << border_point = create(:stop_point, stop_area: border, position: 1)
journey_pattern.stop_points << border_point_2 = create(:stop_point, stop_area: border_2, position: 2)
journey_pattern.stop_points << middle_point = create(:stop_point, stop_area: middle, position: 3)
journey_pattern.stop_points << border_point_3 = create(:stop_point, stop_area: border_3, position: 4)
journey_pattern.stop_points << border_point_4 = create(:stop_point, stop_area: border_4, position: 5)
journey_pattern.stop_points << end_point = create(:stop_point, stop_area: _end, position: 6)
journey_pattern.update_attribute :costs, {
"#{start_point.stop_area_id}-#{border_point.stop_area_id}" => {distance: 50},
"#{border_point.stop_area_id}-#{border_point_2.stop_area_id}" => {distance: 0},
"#{border_point_2.stop_area_id}-#{middle_point.stop_area_id}" => {distance: 100},
"#{middle_point.stop_area_id}-#{border_point_3.stop_area_id}" => {distance: 100},
"#{border_point_3.stop_area_id}-#{border_point_4.stop_area_id}" => {distance: 0},
"#{border_point_4.stop_area_id}-#{end_point.stop_area_id}" => {distance: 100}
}
@journey = create :vehicle_journey, journey_pattern: journey_pattern
@journey.vehicle_journey_at_stops.destroy_all
departure_time = Time.now.noon
@start = create :vehicle_journey_at_stop, stop_point: start_point, vehicle_journey: @journey, departure_time: departure_time, arrival_time: departure_time
@target = create :vehicle_journey_at_stop, stop_point: border_point, vehicle_journey: @journey, arrival_time: nil, departure_time: nil
@target_2 = create :vehicle_journey_at_stop, stop_point: border_point_2, vehicle_journey: @journey, arrival_time: nil, departure_time: nil
@middle = create :vehicle_journey_at_stop, stop_point: middle_point, vehicle_journey: @journey, arrival_time: @start.arrival_time + 4.hours, departure_time: @start.departure_time + 4.hours
@target_3 = create :vehicle_journey_at_stop, stop_point: border_point_3, vehicle_journey: @journey, arrival_time: nil, departure_time: nil
@target_4 = create :vehicle_journey_at_stop, stop_point: border_point_4, vehicle_journey: @journey, arrival_time: nil, departure_time: nil
@end = create :vehicle_journey_at_stop, stop_point: end_point, vehicle_journey: @journey, arrival_time: offset_passing_time(@middle.arrival_time, 4.hours), departure_time: offset_passing_time(@middle.departure_time, 4.hours)
end
it "should compute passing time" do
@journey.reload.fill_passing_times!
expect(@target.reload.arrival_time.to_i).to eq offset_passing_time(@start.reload.departure_time, 1.0/3 * (@middle.reload.arrival_time - @start.departure_time)).to_i
expect(@target_2.reload.arrival_time).to eq @target.arrival_time
expect(@target.departure_time).to eq @target.arrival_time
expect(@target_2.departure_time).to eq @target.arrival_time
expect(@target_3.reload.arrival_time.to_i).to eq offset_passing_time(@middle.reload.departure_time, 0.5 * (@end.reload.arrival_time - @middle.departure_time)).to_i
expect(@target_4.reload.arrival_time).to eq @target_3.arrival_time
expect(@target_3.departure_time).to eq @target_3.arrival_time
expect(@target_4.departure_time).to eq @target_3.arrival_time
end
context "with a stop across midnight" do
before do
@middle.update arrival_time: @start.departure_time + 11.hours, departure_time: @start.departure_time + 13.hours, departure_day_offset: 1, arrival_day_offset: 0
end
it "should set the following stop day offset" do
@journey.reload.fill_passing_times!
expect(@target_3.reload.arrival_day_offset).to eq 1
expect(@target_3.departure_day_offset).to eq 1
end
end
context "with a day offset" do
before do
@end.update arrival_time: offset_passing_time(@middle.departure_time, - 4.hours), departure_time: offset_passing_time(@middle.departure_time, - 4.hours), departure_day_offset: 1, arrival_day_offset: 1
end
it "should compute passing time" do
@journey.reload.fill_passing_times!
expect(@target.reload.arrival_time.to_i).to eq offset_passing_time(@start.reload.departure_time, 1.0/3 * (@middle.reload.arrival_time - @start.departure_time)).to_i
expect(@target_2.reload.arrival_time).to eq @target.arrival_time
expect(@target.departure_time).to eq @target.arrival_time
expect(@target_2.departure_time).to eq @target.arrival_time
expect(@target_3.reload.arrival_time.to_i).to eq offset_passing_time(@middle.reload.departure_time, 10.hours).to_i
expect(@target_3.arrival_day_offset).to eq 1
expect(@target_3.departure_day_offset).to eq 1
expect(@target_4.reload.arrival_time).to eq @target_3.arrival_time
expect(@target_3.departure_time).to eq @target_3.arrival_time
expect(@target_4.departure_time).to eq @target_3.arrival_time
end
end
end
end
|