A free5GC developer friendly integration test system.
| DevOpts | Version |
|---|---|
| OS | Ubuntu 25.04 |
| go | 1.25.5 |
| nodejs | v20.20.0 |
| yarn | 1.22.22 |
| Type | Command |
|---|---|
| Controller and Runner | make |
| Controller | make controller |
| Controller Backend | make backend |
| Controller Frontend | make frontend |
| Runner | make runner |
| Run Controller | make run-runer |
| Run Runner | make run-runner |
| Test Controller | make test-controller |
| Test Runner | make test-runner |
| Tidy Controller | make tidy-controller |
| Tidy Runner | make tidy-runner |
| Lint Controller | make lint-controller |
| Lint Runner | make lint-runner |
/api
└─/login(POST)
└─/logout(POST)
└─/test
│ └─/testcase(GET)
│ └─/tasks(GET)
│ └─/task(GET, POST, DELETE)
│ └─/teselog(GET)
└─/github(GET)
└─/runner(GET)
└─/admin
│ └─/test
│ │ └─/testcase(POST, DELETE)
│ │ └─/history(DELETE)
│ └─/runner(POST, DELETE)
└─/run
└─/runner
└─/heartbeat(POST)
└─/test-output(POST)
These two commands will help you get the latest release deb and install on your host as a system service:
wget https://github.com/Alonza0314/it-system/releases/download/v0.0.0/it-system-controller_0.0.1_amd64.deb
sudo dpkg -i it-system-controller_0.0.1_amd64.debBefore install runner, please make sure your runner host has installed go, gtp5g and mongodb:
GO_VERSION="1.25.5"
wget https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz
sudo tar -C /usr/local -zxvf go${GO_VERSION}.linux-amd64.tar.gz
mkdir -p ~/go/{bin,pkg,src}
echo 'export GOPATH=$HOME/go' >> ~/.bashrc
echo 'export GOROOT=/usr/local/go' >> ~/.bashrc
echo 'export PATH=$PATH:$GOPATH/bin:$GOROOT/bin' >> ~/.bashrc
echo 'export GO111MODULE=auto' >> ~/.bashrc
source ~/.bashrc
rm go${GO_VERSION}.linux-amd64.tar.gz
GTP5G_PATH="$HOME/gtp5g"
GTP5G_VERSION="v0.9.16"
sudo apt -y update
sudo apt -y install gcc g++ cmake autoconf libtool pkg-config libmnl-dev libyaml-dev
git clone --branch ${GTP5G_VERSION} https://github.com/free5gc/gtp5g.git $GTP5G_PATH
pushd $GTP5G_PATH
make
sudo make install
popd
sudo apt-get install gnupg curl
curl -fsSL https://www.mongodb.org/static/pgp/server-8.0.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg --dearmor
echo "deb [ arch=amd64,arm64 signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-8.2.list
sudo apt-get update
sudo apt-get install -y mongodb-org
sudo systemctl enable --now mongodThese two commands will help you get the latest release deb and install on your host as a system service:
wget https://github.com/Alonza0314/it-system/releases/download/v0.0.0/it-system-runner_0.0.1_amd64.deb
sudo dpkg -i it-system-runner_0.0.1_amd64.debIf get in dependency error:
sudo apt-get -f installThen re-install with dpkg -i.
Please refer to: controller / runner.

