diff options
| author | Vlatka Pavisic | 2017-03-29 16:54:40 +0200 | 
|---|---|---|
| committer | Vlatka Pavisic | 2017-03-29 16:54:46 +0200 | 
| commit | 71d50fca35a81109cd4e0db86558735099ef44ef (patch) | |
| tree | 998c952777f1ff7124d52f1effa9501e387ea692 | |
| parent | 753ade655b58d78398f6c2473ab48afed450ab1b (diff) | |
| download | chouette-core-71d50fca35a81109cd4e0db86558735099ef44ef.tar.bz2 | |
Refs #2975 : Rake task to create a Referential and its data
| -rw-r--r-- | Gemfile | 1 | ||||
| -rw-r--r-- | Gemfile.lock | 3 | ||||
| -rw-r--r-- | lib/tasks/referential.rake | 56 | 
3 files changed, 60 insertions, 0 deletions
| @@ -160,6 +160,7 @@ end  group :test, :development, :dev do    gem 'fabrication', '~> 2.14.1'    gem 'ffaker', '~> 2.1.0' +  gem 'faker'  end  group :test, :development do diff --git a/Gemfile.lock b/Gemfile.lock index 67aa8c87c..1ed5de7ae 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -202,6 +202,8 @@ GEM      factory_girl_rails (4.5.0)        factory_girl (~> 4.5.0)        railties (>= 3.0.0) +    faker (1.7.3) +      i18n (~> 0.5)      fakeweb (1.3.0)      faraday (0.9.1)        multipart-post (>= 1.2, < 3) @@ -606,6 +608,7 @@ DEPENDENCIES    enumerize (~> 0.10.0)    fabrication (~> 2.14.1)    factory_girl_rails (~> 4.0) +  faker    fakeweb    faraday (~> 0.9.1)    faraday_middleware (~> 0.9.1) diff --git a/lib/tasks/referential.rake b/lib/tasks/referential.rake new file mode 100644 index 000000000..caee2042a --- /dev/null +++ b/lib/tasks/referential.rake @@ -0,0 +1,56 @@ +# execution example: rake 'referential:create[3, 1896, '01-01-2017', '01-04-2017']' + +namespace :referential do +  desc 'Create a referential and accompanying data' +  task :create, [:workbench_id, :line_id, :start_date, :end_date] => [:environment] do |t, args| +    workbench = Workbench.find_by!(id: args[:workbench_id]) +    line = workbench.line_referential.lines.find_by!(id: args[:line_id]) +    name = "Referential #{Faker::Name.unique.name}" +    referential = workbench.referentials.create!(name: name, slug: name.downcase.parameterize.underscore, organisation: workbench.organisation, +     prefix: Faker::Lorem.unique.characters(10)) +    ReferentialMetadata.create!(referential: referential, line_ids: [args[:line_id]], periodes: [Date.parse(args[:start_date])..Date.parse(args[:end_date])]) +    referential.switch + +    routes = [] +    stop_areas = workbench.stop_area_referential.stop_areas.last(10) + +    4.times do |i| +      route_attrs = { line_id: args[:line_id].to_i, name: "Route #{Faker::Name.unique.name}" } +      if i.even? +        route_attrs[:wayback] = :straight_forward +        route = Chouette::Route.create!(route_attrs) +        route.stop_areas = stop_areas +      else +        route_attrs[:wayback] = :backward +        route_attrs[:opposite_route] = Chouette::Route.last if i == 3 +        route = Chouette::Route.create!(route_attrs) +        route.stop_areas = stop_areas.reverse +      end +      route.save! + +      journey_pattern = Chouette::JourneyPattern.create!(route: route, name: "Journey pattern #{Faker::Name.unique.name}") +      journey_pattern.stop_points = stop_areas.inject([]) { |stop_points, stop_area| stop_points += stop_area.stop_points } + +      25.times do |j| +        vehicle_journey = Chouette::VehicleJourney.create!(journey_pattern: journey_pattern, route: route, number: Faker::Number.unique.number(4)) +        time = Time.current.at_noon + j.minutes +        journey_pattern.stop_points.each_with_index do |stop_point, k| +          vjas = Chouette::VehicleJourneyAtStop.create!(stop_point: stop_point, arrival_time: time + k.minutes, departure_time: time + k.minutes + 30.seconds) +        end +      end + +      2.times do |j| +        name = "Calendar #{Faker::Name.unique.name}" +        calendar = Calendar.create!(name: name, short_name: name.parameterize, organisation: workbench.organisation, +          date_ranges: [(Date.parse(args[:start_date]) + j.days)..(Date.parse(args[:end_date]) - j.days)]) +        Chouette::TimeTable.create!(comment: Faker::Lorem.sentence(3), calendar: calendar, start_date: Date.parse(args[:start_date]) + j.days, +          end_date: Date.parse(args[:end_date]) - j.days) +      end +    end + +  end +end + + + + | 
