Add make-test-bundles.sh

tingping/wmclass
Alexander Larsson 2016-02-25 15:22:25 +01:00
parent 0e595519c1
commit aefb4b6b82
6 changed files with 35 additions and 0 deletions

6
.gitignore vendored
View File

@ -60,3 +60,9 @@ XdgApp-1.0.*
/test-doc-portal.trs
/testdb.log
/testdb.trs
/tests/test-keyring/.gpg-v21-migrated
/tests/test-keyring/private-keys-v1.d/
/tests/test-keyring/trustdb.gpg
/tests/hello*.xdgapp
/tests/platform*.xdgapp
/tests/repo

Binary file not shown.

View File

@ -0,0 +1,26 @@
#!/bin/sh
set -e
./make-test-runtime.sh
./make-test-app.sh
URL=file://`pwd`/repo
REF=`(cd repo/refs/heads; echo app/org.test.Hello/*/master)`
xdg-app build-bundle repo hello.xdgapp org.test.Hello
xdg-app build-bundle repo hello-key.xdgapp --gpg-keys=test-keyring/pubring.gpg org.test.Hello
xdg-app build-bundle repo --repo-url=${URL} hello-origin.xdgapp org.test.Hello
xdg-app build-bundle repo --repo-url=${URL} --gpg-keys=test-keyring/pubring.gpg hello-key-origin.xdgapp org.test.Hello
ostree gpg-sign --repo=repo --gpg-homedir=test-keyring ${REF} 7B0961FD
xdg-app build-bundle repo hello-signed.xdgapp org.test.Hello
xdg-app build-bundle repo hello-key-signed.xdgapp --gpg-keys=test-keyring/pubring.gpg org.test.Hello
xdg-app build-bundle repo --repo-url=${URL} hello-origin-signed.xdgapp org.test.Hello
xdg-app build-bundle repo --repo-url=${URL} --gpg-keys=test-keyring/pubring.gpg hello-key-origin-signed.xdgapp org.test.Hello
REF=`(cd repo/refs/heads; echo runtime/org.test.Platform/*/master)`
ostree gpg-sign --repo=repo --gpg-homedir=test-keyring ${REF} 7B0961FD
xdg-app build-bundle --runtime repo --repo-url=${URL} --gpg-keys=test-keyring/pubring.gpg platform.xdgapp org.test.Platform

View File

@ -0,0 +1,3 @@
These are completely random keys, which include the secret key.
Use these for testing gpg signing, do *NOT* ever use these for any
real application.

Binary file not shown.

Binary file not shown.