mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-06-15 07:00:52 +00:00
tests: use extensive coverage from make's test and system-test
This commit is contained in:
Vendored
-1
@@ -83,7 +83,6 @@ Homepage: https://www.aptly.info
|
||||
Vcs-Git: https://salsa.debian.org/debian/aptly.git
|
||||
Vcs-Browser: https://salsa.debian.org/debian/aptly
|
||||
XS-Go-Import-Path: github.com/aptly-dev/aptly
|
||||
Testsuite: autopkgtest-pkg-go
|
||||
|
||||
Package: aptly
|
||||
Architecture: any
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
From: =?utf-8?q?S=C3=A9bastien_Delafond?= <seb@debian.org>
|
||||
Date: Mon, 17 Feb 2025 10:11:55 +0100
|
||||
Subject: Don't run swagger-related or modules tasks before testing
|
||||
|
||||
---
|
||||
Makefile | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index d6a81da..550a6c8 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -84,7 +84,7 @@ install:
|
||||
# go install -v
|
||||
@out=`mktemp`; if ! go install -v > $$out 2>&1; then cat $$out; rm -f $$out; echo "\nBuild failed\n"; exit 1; else rm -f $$out; fi
|
||||
|
||||
-test: prepare swagger etcd-install ## Run unit tests
|
||||
+test: etcd-install ## Run unit tests
|
||||
@echo "\e[33m\e[1mStarting etcd ...\e[0m"
|
||||
@mkdir -p /tmp/aptly-etcd-data; system/t13_etcd/start-etcd.sh > /tmp/aptly-etcd-data/etcd.log 2>&1 &
|
||||
@echo "\e[33m\e[1mRunning go test ...\e[0m"
|
||||
@@ -94,7 +94,7 @@ test: prepare swagger etcd-install ## Run unit tests
|
||||
@rm -f /tmp/aptly-etcd-data/etcd.log
|
||||
@ret=`cat .unit-test.ret`; if [ "$$ret" = "0" ]; then echo "\n\e[32m\e[1mUnit Tests SUCCESSFUL\e[0m"; else echo "\n\e[31m\e[1mUnit Tests FAILED\e[0m"; fi; rm -f .unit-test.ret; exit $$ret
|
||||
|
||||
-system-test: prepare swagger etcd-install ## Run system tests
|
||||
+system-test: etcd-install ## Run system tests
|
||||
# build coverage binary
|
||||
go test -v -coverpkg="./..." -c -tags testruncli
|
||||
# Download fixture-db, fixture-pool, etcd.db
|
||||
Vendored
+1
@@ -1,2 +1,3 @@
|
||||
0001-disable-swagger.patch
|
||||
0002-disable-new-azure-sdk.patch
|
||||
0003-Don-t-run-swagger-related-or-modules-tasks-before-te.patch
|
||||
|
||||
+32
@@ -0,0 +1,32 @@
|
||||
#!/bin/sh
|
||||
|
||||
# run upstream's unit tests with Debian-supplied dependencies
|
||||
|
||||
# FIXME: right now this fails hard because many prerequisites are only
|
||||
# handled in `make test`
|
||||
|
||||
set -e
|
||||
set -u
|
||||
set -x
|
||||
|
||||
BUILD_DIR="${PWD}/_build"
|
||||
DH_OPTIONS="-O--buildsystem=golang -O--builddirectory=$BUILD_DIR"
|
||||
APTLY_DIR="${BUILD_DIR}/src/github.com/aptly-dev/aptly"
|
||||
|
||||
dpkg-source --before-build .
|
||||
|
||||
dh_update_autotools_config $DH_OPTIONS
|
||||
dh_autoreconf $DH_OPTIONS
|
||||
dh_auto_configure $DH_OPTIONS
|
||||
|
||||
dpkg-parsechangelog --show-field Version | perl -pe 's/\n//' >| ${APTLY_DIR}/VERSION
|
||||
find . -name VERSION
|
||||
|
||||
mkdir -p ${APTLY_DIR}/debian
|
||||
cp debian/aptly.conf ${APTLY_DIR}/debian/
|
||||
|
||||
dh_auto_build $DH_OPTIONS
|
||||
|
||||
export PATH=${BUILD_DIR}/bin:$PATH
|
||||
|
||||
dh_auto_test $DH_OPTIONS --no-parallel
|
||||
Vendored
+6
-3
@@ -1,4 +1,7 @@
|
||||
# This file is an addition to the autodep8 tests.
|
||||
|
||||
Test-Command: HOME=/tmp aptly repo create autopkgtest
|
||||
Tests: unit-test
|
||||
Depends: @, @builddeps@, ca-certificates, curl, git, gpg, gpg-agent
|
||||
Restrictions: allow-stderr
|
||||
|
||||
Tests: system-test
|
||||
Depends: @, @builddeps@, ca-certificates, curl, dirmngr, git, gpg, gpg-agent, graphviz, procps, python3, python3-requests-unixsocket, python3-termcolor, python3-swiftclient, python3-boto3, python3-azure-storage, python3-etcd3, python3-plyvel, sudo, zip
|
||||
Restrictions: allow-stderr
|
||||
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -eux
|
||||
|
||||
TMP_DIR="$(mktemp -d)"
|
||||
APTLY_SRC_DIR="${TMP_DIR}/src/github.com/aptly-dev/aptly"
|
||||
|
||||
# apply patches
|
||||
dpkg-source --before-build .
|
||||
|
||||
# copy source to GOPATH-compatible dir
|
||||
mkdir -p $(dirname $APTLY_SRC_DIR)
|
||||
cp -a . $APTLY_SRC_DIR
|
||||
|
||||
# not in a git tree, so we need to generate the version ourselves
|
||||
dpkg-parsechangelog --show-field Version | perl -pe 's/\n//' > ${APTLY_SRC_DIR}/VERSION
|
||||
|
||||
# use only apt-supplied go libraries
|
||||
export GOPATH="${TMP_DIR}:/usr/share/gocode"
|
||||
export GO111MODULE=off
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
#!/bin/sh
|
||||
|
||||
# run upstream's integration tests
|
||||
|
||||
set -eux
|
||||
|
||||
. debian/tests/setup
|
||||
|
||||
# FIXME: investigate more why those fail
|
||||
# FIXME: look into filters to cleanly disable problematic tests
|
||||
rm ${APTLY_SRC_DIR}/system/t02_config/config.py
|
||||
rm ${APTLY_SRC_DIR}/system/t07_serve/serve.py
|
||||
rm ${APTLY_SRC_DIR}/system/t12_api/docs.py
|
||||
rm ${APTLY_SRC_DIR}/system/t14_graph/graph.py
|
||||
|
||||
make -C $APTLY_SRC_DIR system-test
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
# run upstream's unit tests with their full etcd fixtures, etc
|
||||
|
||||
set -eux
|
||||
|
||||
. debian/tests/setup
|
||||
|
||||
# FIXME: errors with non-constant format string in call to
|
||||
# github.com/aptly-dev/aptly/s3.fatalError
|
||||
rm ${APTLY_SRC_DIR}/s3/server_test.go
|
||||
rm ${APTLY_SRC_DIR}/s3/public_test.go
|
||||
|
||||
make -C $APTLY_SRC_DIR test
|
||||
Reference in New Issue
Block a user