summaryrefslogtreecommitdiff
path: root/bin/sanity-check
blob: bc6e3f2de6bcf2c9ab9b3adb88f9e834a2c80eca (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#!/bin/sh

# do some basic sanity checks

. "${0%/*}/../conf/default.conf"

tmp_dir="$(mktemp -d)"
trap 'rm -rf --one-file-system "${tmp_dir}"' EXIT

if [ $# -eq 0 ]; then
  set -- repos package-database state-files
fi

while [ $# -gt 0 ]; do

  case "$1" in

    repos)

      >&2 printf 'sanity-check: checking repos on master mirror ...'

      repos='community-staging community-testing community core extra gnome-unstable kde-unstable staging testing'

      errors="$(
        (
          printf '%s\n' ${repos}
          ls_master_mirror 'i686'
        ) | \
          sort | \
          uniq -u
      )"
      if [ -n "${errors}" ]; then
        echo
        echo "The following repos are missing or obsolete on the mirror:"
        echo "${errors}"
        exit 1
      fi

      >&2 echo ' passed.'

    ;;

    package-database)

      for repo in ${repos}; do

        >&2 printf 'checking consistency of repository "%s" on the master mirror ...' "${repo}"

        packages="$(
          ls_master_mirror "i686/${repo}" | \
            grep '\.pkg\.tar\.xz\(\.sig\)\?$'
        )" || true

        errors="$(
          echo "${packages}" | \
            sed 's|\.sig$||' | \
            uniq -c | \
            grep -v '^\s*2\s' | \
            awk '{print $2}'
        )"
        if [ -n "${errors}" ]; then
          echo
          echo "The following packages in ${repo} are missing a signature or vice versa:"
          echo "${errors}"
          exit 1
        fi

        ${master_mirror_command} \
          "${master_mirror_directory}/i686/${repo}/${repo}.db.tar.gz" \
          "${master_mirror_directory}/i686/${repo}/${repo}.files.tar.gz" \
          "${tmp_dir}/"

        errors="$(
          (
            tar -tzf "${tmp_dir}/${repo}.db.tar.gz" | \
              grep '/$' | \
              sed 's|/$||'
            echo "${packages}" | \
              sed 's|-[^-]\+$||' | \
              sort -u
          ) | \
            sort | \
            uniq -u
        )"
        if [ -n "${errors}" ]; then
          echo
          echo "The following packages in ${repo} are missing from the database or vice versa:"
          echo "${errors}"
          exit 1
        fi

        errors="$(
          (
            tar -tzf "${tmp_dir}/${repo}.files.tar.gz" | \
              grep '/$' | \
              sed 's|/$||'
            echo "${packages}" | \
              sed 's|-[^-]\+$||' | \
              sort -u
          ) | \
            sort | \
            uniq -u
        )"
        if [ -n "${errors}" ]; then
          echo
          echo "The following packages in ${repo} are missing from the file-database or vice versa:"
          echo "${errors}"
          exit 1
        fi

        rm -rf --one-file-system "${tmp_dir}/"*

        >&2 echo ' passed.'

      done

    ;;

    state-files)

      for status in 'staging:done' 'testing:testing'; do

        >&2 printf 'checking state-files of "%s" ...' "${status%:*}"

        errors="$(
          (
            ls "${work_dir}/package-states" | \
              grep "\.${status#*:}\$" | \
              sed "s|^|${work_dir}/package-states/|" | \
              xargs -r cat
            ls_master_mirror 'i686' | \
              grep "${status%:*}\$" | \
              while read -r repo; do
                ls_master_mirror "i686/${repo}"
              done | \
              grep '\.pkg\.tar\.xz$'
          ) | \
            sort | \
            uniq -c | \
            grep -v '^\s*2\s' | \
            awk '{print $2}'
        )"
        if [ -n "${errors}" ]; then
          echo
          echo "The following ${status%:*} packages do not have state files or vice versa:"
          echo "${errors}"
          exit 1
        fi

        >&2 echo ' passed.'

      done

    ;;

    *)

      >&2 printf 'sanity-check: unknown check "%s".' "$1"
      exit 2

    ;;

  esac

  shift

done