-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
64
apps/transport/test/transport/irve/irve_data_frame_test.exs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
defmodule Transport.IRVE.DataFrameTest do | ||
use ExUnit.Case, async: true | ||
|
||
test "schema content" do | ||
data = | ||
Transport.IRVE.DataFrame.schema_content() | ||
|> Map.fetch!("fields") | ||
|> Enum.at(0) | ||
|> Map.take(["name", "type"]) | ||
|
||
assert data == %{"name" => "nom_amenageur", "type" => "string"} | ||
end | ||
|
||
test "dataframe parsing" do | ||
body = [DB.Factory.IRVE.generate_row()] |> CSV.encode(headers: true) |> Enum.join() | ||
df = Transport.IRVE.DataFrame.dataframe_from_csv_body!(body) | ||
|
||
assert df == | ||
Explorer.DataFrame.new([ | ||
[ | ||
nom_amenageur: "Métropole de Nulle Part", | ||
siren_amenageur: "123456782", | ||
contact_amenageur: "amenageur@example.com", | ||
nom_operateur: "Opérateur de Charge", | ||
contact_operateur: "operateur@example.com", | ||
telephone_operateur: "0199456782", | ||
nom_enseigne: "Réseau de recharge", | ||
id_station_itinerance: "FRPAN99P12345678", | ||
id_station_local: "station_001", | ||
nom_station: "Ma Station", | ||
implantation_station: "Lieu de ma station", | ||
adresse_station: "26 rue des écluses, 17430 Champdolent", | ||
code_insee_commune: "17085", | ||
coordonneesXY: "[-0.799141,45.91914]", | ||
nbre_pdc: 1, | ||
id_pdc_itinerance: "FRPAN99E12345678", | ||
id_pdc_local: "pdc_001", | ||
puissance_nominale: 22, | ||
prise_type_ef: false, | ||
prise_type_2: true, | ||
prise_type_combo_ccs: false, | ||
prise_type_chademo: false, | ||
prise_type_autre: false, | ||
gratuit: false, | ||
paiement_acte: true, | ||
paiement_cb: true, | ||
paiement_autre: true, | ||
tarification: "2,50€ / 30min puis 0,025€ / minute", | ||
condition_acces: "Accès libre", | ||
reservation: false, | ||
horaires: "24/7", | ||
accessibilite_pmr: "Accessible mais non réservé PMR", | ||
restriction_gabarit: "Hauteur maximale 2.30m", | ||
station_deux_roues: false, | ||
raccordement: "Direct", | ||
num_pdl: "12345678912345", | ||
date_mise_en_service: "2024-10-02", | ||
observations: "Station située au niveau -1 du parking", | ||
date_maj: "2024-10-17", | ||
cable_t2_attache: false | ||
] | ||
]) | ||
end | ||
end |