fix test/integration/test-apt-ftparchive-cachedb-lp1274466 in travis
[ntk/apt.git] / test / integration / test-apt-ftparchive-cachedb-lp1274466
CommitLineData
243b2a38
MV
1#!/bin/sh
2set -e
3
4
5#
6# main()
7#
8TESTDIR=$(readlink -f $(dirname $0))
9. $TESTDIR/framework
10setupenvironment
11configarchitecture "i386"
12
13# gather the db and the deb, ensure mtime is not modfied as its saved in the DB
14cp -p $TESTDIR/deb-lp1274466-cachedb.deb foo_1_i386.deb
ea606ec4 15cp -p $TESTDIR/cachedb-lp1274466-old-format.db old-format.db
243b2a38
MV
16
17# verify that the format is different
18testsuccess aptftparchive --db new-format.db packages .
19db_dump new-format.db > new-format.dump
20db_dump old-format.db > old-format.dump
21testfailure diff -u old-format.dump new-format.dump
22
23# ensure the new format as the sha512
24testsuccess grep 7da58ff901a40ecf42a730dc33198b182e9ba9ec98799fc2c2b6fabeeee40cc12a0e7cadb4b66764235c56e1009dbfe8a9a566fb1eedf47a992d1fff2cc3332c new-format.dump
25# but the old format does not
26testfailure grep 7da58ff901a40ecf42a730dc33198b182e9ba9ec98799fc2c2b6fabeeee40cc12a0e7cadb4b66764235c56e1009dbfe8a9a566fb1eedf47a992d1fff2cc3332c old-format.dump
27
28# regression test for corruption with previous generation of cachedb
29testequal "Package: foo
30Priority: optional
31Section: others
32Installed-Size: 29
33Maintainer: Joe Sixpack <joe@example.org>
34Architecture: i386
35Version: 1
36Filename: ./foo_1_i386.deb
37Size: 1270
38MD5sum: 85d0e908c1a897700e2c5dea72d7e3c0
39SHA1: 858b09169032b7925a0e463f46b6634243fc40ce
40SHA256: 3750a2c9c6b5beee7f307564be3d51d3ec7cbb78fa4f0b47f84a7c41477bff59
41SHA512: 7da58ff901a40ecf42a730dc33198b182e9ba9ec98799fc2c2b6fabeeee40cc12a0e7cadb4b66764235c56e1009dbfe8a9a566fb1eedf47a992d1fff2cc3332c
42Description: an autogenerated dummy foo=1/test
43 If you find such a package installed on your system,
44 something went horribly wrong! They are autogenerated
45 und used only by testcases and surf no other proposeā€¦
46" aptftparchive --db old-format.db packages .
47
ea606ec4
MV
48# ensure that the db is updated and contains the new sha512
49testsuccess grep 7da58ff901a40ecf42a730dc33198b182e9ba9ec98799fc2c2b6fabeeee40cc12a0e7cadb4b66764235c56e1009dbfe8a9a566fb1eedf47a992d1fff2cc3332c old-format.dump
50
243b2a38 51