ocpi-tariffs 0.43.0

OCPI tariff calculations
Documentation
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
#![allow(
    clippy::unwrap_in_result,
    reason = "unwraps are allowed anywhere in tests"
)]
#![allow(
    clippy::indexing_slicing,
    reason = "tests are allowed to index collections"
)]

use std::{fmt, path::Path, str::FromStr as _};

use chrono::{DateTime, Utc};
use num_traits::Zero as _;
use rand::RngExt as _;
use rust_decimal::Decimal;
use rust_decimal_macros::dec;
use tracing::debug;

use crate::{
    assert_approx_eq_tolerance, cdr, country, money,
    price::{self, test::UnwrapReport as _},
    tariff,
    test::{self, ApproxEq},
    ObjectType, ToHoursDecimal, Version,
};

/// Each `config.json` found in the tariff test directory results in a test run.
#[test_each::file(
    glob = "ocpi-tariffs/test_data/popular/*/test_run*.json",
    name(segments = 2)
)]
fn should_price_cdr_generated_from_tariff(test_run_json: &str, path: &Path) {
    const VERSION: Version = Version::V221;

    test::setup();

    let tariff_json = read_tariff_json(path).unwrap();

    let tariff = {
        let parse_report = tariff::parse_with_version(&tariff_json, VERSION).unwrap();
        let tariff::ParseReport {
            tariff,
            unexpected_fields,
        } = parse_report;
        test::assert_no_unexpected_fields(ObjectType::Tariff, &unexpected_fields);
        tariff
    };

    let test_run = serde_json::from_str::<TestRun>(test_run_json).unwrap();
    let TestRun { input, expect } = test_run;
    let config = super::Config::from(input);
    let timezone = config.timezone;

    let cdr_json = {
        let report = super::cdr_from_tariff(&tariff, config).unwrap();
        let (report, warnings) = report.into_parts();
        assert!(
            warnings.is_empty(),
            "Generating the CDR from a tariff has warnings;\n{:?}",
            warnings.path_id_map()
        );

        let cdr_json = partial_to_cdr(report.partial_cdr);
        serde_json::to_string_pretty(&cdr_json).unwrap()
    };

    let tariff_source = price::TariffSource::Override(vec![tariff]);

    let parse_report = cdr::parse_with_version(&cdr_json, VERSION).unwrap();
    let cdr::ParseReport {
        cdr,
        unexpected_fields,
    } = parse_report;
    debug!("{}", cdr.as_json_str());
    test::assert_no_unexpected_fields(ObjectType::Cdr, &unexpected_fields);
    let report = price::cdr(&cdr, tariff_source, timezone).unwrap_report(cdr.as_json_str());
    debug!("{:?}", report.total_time);

    if let Some(total_cost) = report.total_cost.calculated {
        assert_approx_eq_tolerance!(
            total_cost,
            expect.total_cost.value,
            expect.total_cost.tolerance,
        );
    }

    if let Some(total_energy) = report.total_energy.calculated {
        assert_approx_eq_tolerance!(
            total_energy,
            expect.total_energy.value,
            expect.total_energy.tolerance,
        );
    }
}

#[track_caller]
fn read_tariff_json(json_file_path: &Path) -> Option<String> {
    const TARIFF_FILE_NAME: &str = "tariff.json";

    let json_dir = json_file_path
        .parent()
        .expect("The given file should live in a dir");

    debug!("Try to read tariff file: `{TARIFF_FILE_NAME}`");

    let json = std::fs::read_to_string(json_dir.join(TARIFF_FILE_NAME))
        .ok()
        .map(|mut json| {
            json_strip_comments::strip(&mut json).ok();
            json
        });

    debug!("Successfully read tariff file: `{TARIFF_FILE_NAME}`");

    json
}

/// Each `test_run.json` file in the `test_data/popular` directories results in a test run of
/// the `should_price_cdr_generated_from_tariff` function.
#[derive(serde::Deserialize)]
struct TestRun {
    /// The input config for this test run.
    /// This is converted into a `generate::Config` and given to the `cdr::generate_from_tariff` function.
    input: Input,

    /// The expectation for the priced CDR generated from the tariff.
    expect: Expect,
}

/// The config for generating a CDR from a tariff.
///
/// This is read in from a `config.json` file in the `test_data/popular` directories.
/// Each config file triggers a test run on the `should_price_cdr_generated_from_tariff` function.
#[derive(serde::Deserialize)]
struct Input {
    /// The timezone of the EVSE: The timezone where the chargesession took place.
    timezone: String,

    /// The start date of the generated CDR.
    end_date_time: String,

    /// The maximum DC current that can be delivered to the battery.
    max_current_supply_amp: Decimal,

    /// The amount of energy(kWh) the requested to be delivered.
    ///
    /// We don't model charging curves for the battery, so we don't care about the existing change of
    /// the battery.
    requested_kwh: Decimal,

    /// The maximum DC power(kw) that can be delivered to the battery.
    ///
    /// This is modeled as a DC system as we don't care if the delivery medium is DC or one of the
    /// various AC forms. We only care what the effective DC power is. The caller of `cdr_from_tariff`
    /// should convert the delivery medium into a DC kw power by using a power factor.
    ///
    /// In practice the maximum power bottleneck is either the EVSE, the cable or the battery itself.
    /// But whatever the bottleneck is, the caller should work that out and set the maximum expected.
    max_power_supply_kw: Decimal,

    /// The start date of the generated CDR.
    start_date_time: String,
}

#[derive(serde::Deserialize)]
struct Expect {
    /// The expected `total_cost`.
    total_cost: Tolerance<crate::Price>,

    /// The expected `total_energy`.
    total_energy: Tolerance<crate::Kwh>,
}

#[derive(Debug, serde::Deserialize)]
struct Tolerance<T> {
    value: T,
    tolerance: Decimal,
}

impl ApproxEq for Tolerance<Decimal> {
    type Tolerance = Decimal;

    fn default_tolerance() -> Self::Tolerance {
        dec!(0.1)
    }

    fn approx_eq(&self, other: &Self) -> bool {
        self.approx_eq_tolerance(other, self.tolerance)
    }

    fn approx_eq_tolerance(&self, other: &Self, tolerance: Self::Tolerance) -> bool {
        <Decimal as ApproxEq>::approx_eq_tolerance(&self.value, &other.value, tolerance)
    }
}

impl ApproxEq for Tolerance<crate::Price> {
    type Tolerance = Decimal;

    fn default_tolerance() -> Self::Tolerance {
        dec!(0.1)
    }

    fn approx_eq(&self, other: &Self) -> bool {
        self.approx_eq_tolerance(other, self.tolerance)
    }

    fn approx_eq_tolerance(&self, other: &Self, tolerance: Self::Tolerance) -> bool {
        <crate::Price as ApproxEq>::approx_eq_tolerance(&self.value, &other.value, tolerance)
    }
}

impl From<Input> for super::Config {
    fn from(config: Input) -> Self {
        let Input {
            timezone,
            end_date_time,
            max_current_supply_amp,
            requested_kwh,
            max_power_supply_kw,
            start_date_time,
        } = config;

        super::Config {
            timezone: chrono_tz::Tz::from_str(&timezone).unwrap(),
            end_date_time: DateTime::<Utc>::from_str(&end_date_time).unwrap(),
            max_current_supply_amp,
            requested_kwh,
            max_power_supply_kw,
            start_date_time: DateTime::<Utc>::from_str(&start_date_time).unwrap(),
        }
    }
}

/// Create a CDR from a the `PartialCdr` returned from the `generate` feature.
/// The CDR is then priced.
#[expect(
    clippy::similar_names,
    reason = "evse_id and evse_uid are well known terms"
)]
fn partial_to_cdr(partial_cdr: super::PartialCdr) -> serde_json::Value {
    const DEFAULT_COUNTRY_CODE: country::Code = country::Code::Nl;
    const DEFAULT_PARTY_ID: &str = "ENE";
    const ID_MAX_LEN: usize = 39;
    const TOKEN_UID_LEN: usize = 36;
    const TOKEN_CONTRACT_UID_LEN: usize = 36;
    const LOCATION_ID_LEN: usize = 36;
    const EVSE_UID_LEN: usize = 36;
    const EVSE_ID_LEN: usize = 48;
    const CONNECTOR_ID_LEN: usize = 36;

    let super::PartialCdr {
        cpo_country_code,
        cpo_currency_code,
        party_id,
        start_date_time,
        end_date_time,
        total_energy,
        total_charging_duration,
        total_parking_duration,
        total_cost,
        total_energy_cost,
        total_fixed_cost,
        total_parking_duration_cost,
        total_charging_duration_cost,
        charging_periods,
    } = partial_cdr;

    let cpo_country_code = cpo_country_code.unwrap_or(DEFAULT_COUNTRY_CODE);
    let country_code = cpo_country_code.into_alpha_2_str();
    let party_id = party_id.as_deref().unwrap_or(DEFAULT_PARTY_ID);
    let id = random_alpha_num_string(ID_MAX_LEN);
    let start_date_time = start_date_time.to_rfc3339();
    let end_date_time = end_date_time.to_rfc3339();
    let token_uid = random_alpha_num_string(TOKEN_UID_LEN);
    let token_contract_id = random_alpha_num_string(TOKEN_CONTRACT_UID_LEN);
    let location_id = random_alpha_num_string(LOCATION_ID_LEN);
    let evse_uid = random_alpha_num_string(EVSE_UID_LEN);
    let evse_id = random_alpha_num_string(EVSE_ID_LEN);
    let connector_id = random_alpha_num_string(CONNECTOR_ID_LEN);

    let total_energy = total_energy
        .map(Decimal::from)
        .unwrap_or_else(Decimal::zero);
    let total_parking_time = total_parking_duration
        .as_ref()
        .map(ToHoursDecimal::to_hours_dec)
        .unwrap_or_default();
    let total_charging_time = total_charging_duration
        .as_ref()
        .map(ToHoursDecimal::to_hours_dec)
        .unwrap_or_default();
    let total_time = total_charging_time.checked_add(total_parking_time).unwrap();
    let total_cost = total_cost.map(Price::from).unwrap_or_default();
    let total_energy_cost = total_energy_cost.map(Price::from).unwrap_or_default();
    let total_fixed_cost = total_fixed_cost.map(Price::from).unwrap_or_default();
    let total_parking_duration_cost = total_parking_duration_cost
        .map(Price::from)
        .unwrap_or_default();
    let total_charging_duration_cost = total_charging_duration_cost
        .map(Price::from)
        .unwrap_or_default();
    let last_updated = Utc::now().to_rfc3339();
    let charging_periods = charging_periods
        .into_iter()
        .map(ChargingPeriod::from)
        .collect::<Vec<_>>();

    // See: <https://github.com/ocpi/ocpi/blob/release-2.2.1-bugfixes/mod_cdrs.asciidoc>
    serde_json::json!({
        "country_code": country_code,
        "party_id": party_id,
        "id": id,
        "start_date_time": start_date_time,
        "end_date_time": end_date_time,
        "cdr_token": {
          "country_code": country_code,
          "party_id": party_id,
          "uid": token_uid,
          "contract_id": token_contract_id,
          "type": "RFID"
        },
        "auth_method": "whitelist",
        "cdr_location": {
            "id": location_id,
            "address": "[address]",
            "city": "[city]",
            "country": cpo_country_code.into_alpha_3_str(),
            "coordinates": {
                "latitude": "50.770774",
                "longitude": "-126.104965"
            },
            "evse_uid": evse_uid,
            "evse_id": evse_id,
            "connector_id": connector_id,
            "connector_standard": "IEC_62196_T2",
            "connector_format": "SOCKET",
            "connector_power_type": "AC_1_PHASE"
        },
        "currency": cpo_currency_code.into_str(),
        "total_energy": total_energy,
        "total_time": total_time,
        "total_parking_time": total_parking_time,
        "total_cost": total_cost,
        "total_energy_cost": total_energy_cost,
        "total_fixed_cost": total_fixed_cost,
        "total_parking_cost": total_parking_duration_cost,
        "total_time_cost": total_charging_duration_cost,
        "last_updated": last_updated,
        "charging_periods": charging_periods
    })
}

/// Return a random string of the desired length.
///
/// This is used to create the various dummy ids for the Cdr under test.
fn random_alpha_num_string(len: usize) -> String {
    const ALPHA_NUM_CHARS: &[u8] = b"ABCDEFGHIJKLMNOPQRSTUVWXYZ\
                                    abcdefghijklmnopqrstuvwxyz\
                                    0123456789";
    const ALPHA_NUM_LEN: usize = ALPHA_NUM_CHARS.len();

    let mut rng = rand::rng();

    (0..len)
        .map(|_| {
            let idx = rng.random_range(0..ALPHA_NUM_LEN);
            char::from(ALPHA_NUM_CHARS[idx])
        })
        .collect()
}

// ***********************************************************************************************
// The Serializable structs below are specialized copies of the general purpose CDR implementation
// as we only use `serde` in tests.
// ***********************************************************************************************

/// A single charging period, containing a nonempty list of charge dimensions.
///
/// * See: [OCPI spec 2.2.1: CDR ChargingPeriod](<https://github.com/ocpi/ocpi/blob/release-2.2.1-bugfixes/mod_cdrs.asciidoc#146-chargingperiod-class>)
#[derive(serde::Serialize)]
struct ChargingPeriod {
    /// Start timestamp of the charging period. This period ends when a next period starts, the
    /// last period ends when the session ends
    start_date_time: String,

    /// List of relevant values for this charging period
    dimensions: Vec<Dimension>,

    /// Unique identifier of the Tariff that is relevant for this Charging Period. If not provided, no Tariff is relevant during this period.
    tariff_id: Option<String>,
}

impl From<super::ChargingPeriod> for ChargingPeriod {
    fn from(value: super::ChargingPeriod) -> Self {
        let super::ChargingPeriod {
            start_date_time,
            dimensions,
            tariff_id,
        } = value;
        Self {
            start_date_time: start_date_time.to_rfc3339(),
            dimensions: dimensions.into_iter().map(Dimension::from).collect(),
            tariff_id,
        }
    }
}

/// The volume that has been consumed for a specific dimension during a charging period.
///
/// * See: [OCPI spec 2.2.1: CDR Dimension](<https://github.com/ocpi/ocpi/blob/release-2.2.1-bugfixes/mod_cdrs.asciidoc#mod_cdrs_cdrdimension_class>)
#[derive(serde::Serialize)]
struct Dimension {
    #[serde(rename = "type")]
    /// The dimension type
    dimension_type: String,

    /// Volume of the dimension consumed, measured according to the dimension type.
    volume: Decimal,
}

impl From<super::Dimension> for Dimension {
    fn from(value: super::Dimension) -> Self {
        let super::Dimension {
            dimension_type,
            volume,
        } = value;
        Self {
            dimension_type: dimension_type.to_string(),
            volume,
        }
    }
}

/// A price consisting of a value including VAT, and a value excluding VAT.
#[derive(serde::Serialize, Default)]
struct Price {
    /// The price excluding VAT.
    excl_vat: f64,

    /// The price including VAT.
    ///
    /// If no vat is applicable this value will be equal to the `excl_vat`.
    ///
    /// If no vat could be determined this value will be `None`.
    /// The v211 tariffs can't determine VAT.
    #[serde(default, skip_serializing_if = "Option::is_none")]
    incl_vat: Option<f64>,
}

impl From<money::Price> for Price {
    fn from(value: money::Price) -> Self {
        use rust_decimal::prelude::ToPrimitive;

        let money::Price { excl_vat, incl_vat } = value;
        Self {
            excl_vat: Decimal::from(excl_vat).to_f64().unwrap(),
            incl_vat: incl_vat.map(|d| Decimal::from(d).to_f64().unwrap()),
        }
    }
}

impl fmt::Display for super::DimensionType {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            super::DimensionType::Energy => f.write_str("ENERGY"),
            super::DimensionType::MaxCurrent => f.write_str("MAX_CURRENT"),
            super::DimensionType::MinCurrent => f.write_str("MIN_CURRENT"),
            super::DimensionType::MaxPower => f.write_str("MAX_POWER"),
            super::DimensionType::MinPower => f.write_str("MIN_POWER"),
            super::DimensionType::ParkingTime => f.write_str("PARKING_TIME"),
            super::DimensionType::ReservationTime => f.write_str("RESERVATION_TIME"),
            super::DimensionType::Time => f.write_str("TIME"),
        }
    }
}