ansforge / psc-admin-portal

Apache License 2.0
0 stars 0 forks source link

PscAdminPortal

Administration portal for sec-psc.

This project was generated with Angular CLI version 17.2.2.

Development

License header check

The license header check gets performed as part of each container build. If the check fails, the container build will fail. If this happens, use the license/license-format.sh script to draft the header bump commit. Always check the result before committing : the tool mostly works, but in some corner cases (some partial match with the header with too much difference) it will make invalid change that needs to be manually fixed.

Running the angular application in development mode

Prerequisits

  1. You need bash and docker, directly or in a linux virtual machine like WSL or VirtualBox.
  2. You need to map the sec-psc.wom.dev.henix.fr domain name to the interface the proxy will be listening to. The launch script defaults to 127.0.0.2, but if you need this proxy to listen to a specific interface, set the HOST_ADDRESS shell variable before running.
  3. You need all sec-psc git repositories checked-out in the same directory. For this to work, do not working copies need to be checked-out under the default directory name created by git clone.

Troubleshooting WSL for use with docker

  1. Docker containers won't run in WSL

    1. First of all, please check that you have WSL2 active (WSL1 does not allow docker to work properly)
    2. If you do run WSL2, check the docker daemon status with :

      sudo service docker status

      If the answer is not docker is running, the start it :

      sudo service docker start
  2. Docker containers don't have network access

    This migh result from docker's private subnet in the 172.17.xx.xx colliding with the WSL2 VM's random IP adress if this address is in the 172.17.xx.xx range. To ensure this won't happen, you need to tweak docker's daemon configuration to change its private subnet IP range. If your WSL2 VM runs a debian or dervied distro, follow these steps :

    1. Open the /etc/default/docker as admin

      sudo nano /etc/default/docker
    2. Change the DOCKER_OPT line

      #DOCKER_OPTS="--dns 8.8.8.8 --dns 8.8.4.4"

      to

      DOCKER_OPTS="----bip 198.168.50.1/24"

Running helper processes

Two helper processes may be run as docker containers :

  1. Development proxy

    To be able to run the angular portal in development mode, you need a reverse proxy for service calls. The mapping to backend processes IP and PORT is defined in the scripts/service-addresses.conf file. This file is not committed, but generated from the scripts/service-addresses.conf.in file if it does not exist. Default values are OK if you run backends alongside the proxy container using the script (see Running backend processes). If this is not your configuration, adjust the IP or PORT variables as you need.

  2. Mongodb database for the backends

Both containers can be launched by running the scripts/launch_dev_helpers.sh script.

Running backend processes

Launch the scripts/launch_dev_backends.sh script.

To stop the backend, launch the scripts/stop_dev_backends.sh script.

Testing the process

After launching development processes (see above), processes may be tested using two datasets :

  1. Creation dataset

    This dataset is in the file src/test/resources/rass-2000-lignes.txt. To load it:

    1. first copy the (empty) target/rass-archive-mock.txt file created by dev helpers into the target/pscload_files directory.
    2. then copy the src/test/resources/rass-2000-lignes.txt file content into the target/pscload_files/rass-archive-mock.txt file.
    3. The process will run all along by itself (no restriction on PS creations)
  2. The complete deletion dataset

    This dataset is the empty rass mock extract created by the dev helpers. To load it :

    1. Empty the target/pscload_files directory
    2. Launch the process
    3. Deleting 2000 PS will trigger an alert (which can be bypassed from the gestion des alertes action pane)

Qualification

To test the process in qualification (cloud) environments, make sure the qualification environment can access rwa github resources and see the rass-loader qualification procedure.