uncefact / tests-untp

UNTP mock implementations and test cases

Home Page:https://uncefact.github.io/tests-untp/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tests-untp

The UNTP Test Suite is a comprehensive set of tools designed to ensure conformance to the UN Transparency Protocol (UNTP). This repository contains the following key components:

  1. Mock Apps: Demonstrating how decentralized applications work within the UNTP ecosystem.
  2. Test Suites: Covering three tiers of testing - technical interoperability, semantic interoperability, and graph validation.
  3. Documentation Site: Providing detailed information on setup, configuration, and usage.

The Mock Apps are structured into three main packages:

  • Components: Contains the UI components.
  • Core: Handles rendering and interaction between components and services.
  • Services: Contains the business logic.

These tools allow implementers to model value chains, test UNTP functionality in real-world scenarios, and ensure their implementations align with the UNTP specification across various aspects of interoperability and validation.

Prerequisites

Setup

To set up and run the mock app:

  1. Install dependencies:

    yarn install
  2. Build the package:

    yarn build
  3. Start the project:

    yarn start

Docker Compose Configuration

We provide a Docker Compose configuration to easily set up the required services (Verifiable Credential Service, Storage Service, a database for the VC service) and the documentation site. To start these services:

docker-compose up -d

This will start pre-configured instances of the necessary services and the documentation site. The app-config.json mock app config file is pre-configured to work with these Docker services.

Docker Compose with Seeding Data

If you want to run the Docker Compose along with seeding data, you can use the following command:

SEEDING=true docker-compose up -d

The SEEDING environment variable acts as a flag to seed the Identity Resolver and Mock Global GS1 Resolver services with the necessary data.

Documentation

For detailed information about the configuration, services, and how to use the mock app, please refer to the documentation site.

The documentation site is available at http://localhost:3002 after starting the services with Docker Compose.

If you need to run the documentation site manually:

cd documentation
yarn install
yarn start

Please consult the documentation for comprehensive instructions on setting up and using the mock app, regardless of whether you're using Docker Compose or setting up services manually.

Seed Data for Identity Resolver and Mock Global GS1 Resolver services

The Identity Resolver and Mock Global GS1 Resolver services require seed data to function correctly. The seed data scripts are provided in the seeding-idr-data.sh and seeding-mock-gs1-data.sh. To seed the data, run the following commands:

# Set environment variables
export IDR_SERVICE_HOST=localhost # IDR service host
export IDR_SERVICE_PORT=3000 # IDR service port
export IDR_SERVICE_API_KEY=test123 # IDR service API key
export IDR_SERVICE_DOMAIN=http://localhost:3000 # IDR service domain

export MOCK_GS1_SERVICE_HOST=localhost # Mock GS1 service host
export MOCK_GS1_SERVICE_PORT=3001 # Mock GS1 service port
export MOCK_GS1_SERVICE_API_KEY=test456 # Mock GS1 service API key
export MOCK_GS1_IDENTIFICATION_KEYS=09359502000034,09359502000035 # Mock GS1 service identification keys

# Run seeding scripts
./seeding-idr-data.sh
./seeding-mock-gs1-data.sh

About

UNTP mock implementations and test cases

https://uncefact.github.io/tests-untp/

License:GNU General Public License v3.0


Languages

Language:TypeScript 62.8%Language:JavaScript 27.6%Language:Handlebars 8.6%Language:Shell 0.6%Language:HTML 0.3%Language:Dockerfile 0.1%Language:CSS 0.0%