summaryrefslogtreecommitdiff
path: root/tests/tests/debpolicy-newreject
blob: 2a2e8f3afab577868c8547edb8fabcbd8abe31dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash
set -e
. tests/lib

t-debpolicy
t-prep-newpackage example 1.0

cd $p


echo FORBIDDEN >debian/some-file
git add debian/some-file
git commit -m 'Commit a forbidden thing'

bad=`git rev-parse HEAD:debian/some-file`
t-policy-admin taint --global "$bad" "forbidden for testing"

t-dgit build
t-expect-fail 'forbidden for testing' \
t-dgit push --new
t-git-dir-check enoent

git reset --hard HEAD~
git commit --allow-empty -m 'will vanish from NEW'
t-dgit build
t-dgit push --new
t-git-dir-check secret

t-policy-periodic
t-git-dir-check secret

# pretend it vanished from new:
rm $tmp/incoming/*
t-archive-none example

t-git-dir-time-passes

t-policy-periodic
t-git-dir-check enoent

git commit --allow-empty -m 'should require --deliberately...questionable'
t-dgit build

t-expect-fail 'tag debian/1.0 referred to this object.*all previously pushed versions were found to have been removed' \
t-dgit push --new
t-git-dir-check enoent

t-dgit push --new --deliberately-include-questionable-history
t-git-dir-check secret

echo xxx up to here