test-apt-ftparchive-cachedb-lp1274466 2.0 KB

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