-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from extrawest/dev
Dev
- Loading branch information
Showing
3 changed files
with
26 additions
and
7 deletions.
There are no files selected for viewing
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
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
23 changes: 23 additions & 0 deletions
23
src/test/resources/features/BootNotificationAndMeterValues.feature
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,23 @@ | ||
Feature: | ||
|
||
Scenario: The Central System receives "BootNotification.req", confirms it, and then receives "MeterValues.req" from Charge Point | ||
Given the Central System is started on "localhost" | ||
Given the Charge Point is connected | ||
Given the Central System must receive "BootNotification.req" with given data | ||
| chargePointModel | any | | ||
| chargePointVendor | any | | ||
| chargePointSerialNumber | any | | ||
| firmwareVersion | any | | ||
| iccid | any | | ||
| imsi | any | | ||
| meterSerialNumber | any | | ||
| meterType | any | | ||
Given the Central System must send confirmation response with given data | ||
| currentTime | any | | ||
| interval | 60 | | ||
| status | Accepted | | ||
When the Central System must receive "MeterValues.req" with given data | ||
| connectorId | any | | ||
| meterValue | [{"timestamp":"2023-02-23T10:01:08Z","sampledValue":[{"value":"1000","context":"Transaction.Begin","format":"Raw","measurand":"Energy.Active.Import.Register","phase":null,"location":"Outlet","unit":"Wh"}]}] | | ||
| transactionId | any | | ||
Then the Central System must send confirmation response |