@mill6-plat6aux/pathfinder-testbed

0.9.26 • Public • Published

Pathfinder TESTBED

The Pathfinder Framework is proposed by WBCSD/PACT and defines the methodology for accounting carbon footprints. A carbon footprint can be categorized into which related to own company and to other companies, and the common interface between the applications used by own company and other companies makes more efficient for carbon footprint calculation related to other companies. Specifications for PCF Data Exchange (Tech Spec) defines that interface.

Applications implementing the Tech Spec generally can exchange data peer-to-peer, on the other hand the differences in implementation levels would prevent successful data exchange. Therefore, in order to demonstrate that each application is of a certain standard, application vendors conduct a mutual conformance approval process by testing each other, and publish the results in the PACT web site.

However there is still variation in the implementation levels since the specific testing process is not defined in the above mutual approval process and each vendor conducts testing from their own perspective. In order to make this situation more rigorous to Tech Spec, I have created a testing tool. With this tool, certain tests can be performed automatically.

⚠️This software is not WBCSD/PACT approved.

⚠️Please note that passing a test does not imply any kind of official approval.

Required environment

  • Node.js 18.0 later

If Node.js is not installed on your system, see here.

Test Settings

The Tech-Spec-implemented application under test can be connected to via HTTPS. Its endpoints, authentication information, etc. are described in the following YAML.

version: "2.2.0"
authContextPath: https://example.com
userName: USER_NAME
password: PASSWORD
dataContextPath: https://example.com
filterSupport: true
limitSupport: true
eventsSupport: true
log: stdout
stubContextPath: http://localhost:3000
stubData:
  companyIds:
    - urn:uuid:38503239-8214-43c6-bc4e-3580a6def72b

Setting details

Key Setting contents
version The version of the Tech Spec that the application under test implements.
authContextPath Context path of Action Authenticate. Usually, this context path plus /auth/token becomes the endpoint. If OpenID Connect Discovery is supported, this context path plus /.well-known/openid-configuration is accessed to determine the authentication method.
userName Username to use in Action Authenticate.
password Password to use in Action Authenticate.
dataContextPath Context path for Action ListFootprints, Action GetFootprint, and Action Events. In Tech Spec ver 2, this context path with /2/footprints appended will be the endpoint.
filterSupport Set to true if the application under test implements the $filter request parameter in Action ListFootprints.
limitSupport Set to true if the application under test implements the limit request parameter in Action ListFootprints.
eventsSupport Set to true if the application under test implements Action Events.
log Destination for output of test results. If stdout is selected, the result will be displayed in the standard output. If file is selected, the result will be output to the current directory as result.log.
userAgent Set if UserAgent is required in the HTTP header of the request.
stubContextPath Action Events requires two-way communication. Setting the context path here will start the HTTP server with the configured protocol and port. The application under test should be able to respond to this context path when responding to requests.
stubData/* If you want to set a fixed value for ProductFootprint when responding to an Action Events request, specify the ProductFootprint property under stubData.
keepStub If set to true, the stub server will not terminate when the test case ends. This can be used when sending Action Events from the application under test and verifying the request data.

Test

To run this tool, use npx.

If you want to install it in the current directory beforehand, run the following command. (if it is not installed, npx will ask you if you want to install it.)

npm install @mill6-plat6aux/pathfinder-testbed

Set the YAML file created in Test Settings to the setting argument as shown below and execute it.

npx @mill6-plat6aux/pathfinder-testbed --setting test.yaml

License

MIT

Developers

Takuro Okada


© Takuro Okada

Readme

Keywords

none

Package Sidebar

Install

npm i @mill6-plat6aux/pathfinder-testbed

Weekly Downloads

69

Version

0.9.26

License

MIT

Unpacked Size

110 kB

Total Files

14

Last publish

Collaborators

  • mill6-plat6aux