test-apt-progress-fd 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #!/bin/sh
  2. set -e
  3. TESTDIR="$(readlink -f "$(dirname "$0")")"
  4. . "$TESTDIR/framework"
  5. setupenvironment
  6. configarchitecture 'amd64' 'i386'
  7. buildsimplenativepackage 'testing' 'amd64' '0.1' 'stable'
  8. buildsimplenativepackage 'testing' 'amd64' '0.8.15' 'stable'
  9. buildsimplenativepackage 'testing2' 'amd64,i386' '0.8.15' 'stable'
  10. setupaptarchive
  11. # install native
  12. exec 3> apt-progress.log
  13. testsuccess aptget install testing=0.1 -y -o APT::Status-Fd=3
  14. testfileequal './apt-progress.log' 'dlstatus:1:0.0000:Retrieving file 1 of 1
  15. dlstatus:1:100.0000:Retrieving file 1 of 1
  16. pmstatus:dpkg-exec:0.0000:Running dpkg
  17. pmstatus:testing:0.0000:Installing testing (amd64)
  18. pmstatus:testing:16.6667:Preparing testing (amd64)
  19. pmstatus:testing:33.3333:Unpacking testing (amd64)
  20. pmstatus:testing:50.0000:Preparing to configure testing (amd64)
  21. pmstatus:dpkg-exec:50.0000:Running dpkg
  22. pmstatus:testing:50.0000:Configuring testing (amd64)
  23. pmstatus:testing:66.6667:Configuring testing (amd64)
  24. pmstatus:testing:83.3333:Installed testing (amd64)'
  25. # upgrade
  26. exec 3> apt-progress.log
  27. testsuccess aptget install testing=0.8.15 -y -o APT::Status-Fd=3
  28. testfileequal './apt-progress.log' 'dlstatus:1:0.0000:Retrieving file 1 of 1
  29. dlstatus:1:100.0000:Retrieving file 1 of 1
  30. pmstatus:dpkg-exec:0.0000:Running dpkg
  31. pmstatus:testing:0.0000:Installing testing (amd64)
  32. pmstatus:testing:16.6667:Preparing testing (amd64)
  33. pmstatus:testing:33.3333:Unpacking testing (amd64)
  34. pmstatus:testing:50.0000:Preparing to configure testing (amd64)
  35. pmstatus:dpkg-exec:50.0000:Running dpkg
  36. pmstatus:testing:50.0000:Configuring testing (amd64)
  37. pmstatus:testing:66.6667:Configuring testing (amd64)
  38. pmstatus:testing:83.3333:Installed testing (amd64)'
  39. # reinstall
  40. exec 3> apt-progress.log
  41. testsuccess aptget install testing=0.8.15 --reinstall -y -o APT::Status-Fd=3
  42. testfileequal './apt-progress.log' 'dlstatus:1:0.0000:Retrieving file 1 of 1
  43. dlstatus:1:100.0000:Retrieving file 1 of 1
  44. pmstatus:dpkg-exec:0.0000:Running dpkg
  45. pmstatus:testing:0.0000:Installing testing (amd64)
  46. pmstatus:testing:16.6667:Preparing testing (amd64)
  47. pmstatus:testing:33.3333:Unpacking testing (amd64)
  48. pmstatus:testing:50.0000:Preparing to configure testing (amd64)
  49. pmstatus:dpkg-exec:50.0000:Running dpkg
  50. pmstatus:testing:50.0000:Configuring testing (amd64)
  51. pmstatus:testing:66.6667:Configuring testing (amd64)
  52. pmstatus:testing:83.3333:Installed testing (amd64)'
  53. # and remove
  54. exec 3> apt-progress.log
  55. testsuccess aptget remove testing -y -o APT::Status-Fd=3
  56. testfileequal './apt-progress.log' 'pmstatus:dpkg-exec:0.0000:Running dpkg
  57. pmstatus:testing:0.0000:Removing testing (amd64)
  58. pmstatus:testing:25.0000:Preparing for removal of testing (amd64)
  59. pmstatus:testing:50.0000:Removing testing (amd64)
  60. pmstatus:testing:75.0000:Removed testing (amd64)
  61. pmstatus:dpkg-exec:75.0000:Running dpkg'
  62. # install non-native and ensure we get proper progress info
  63. exec 3> apt-progress.log
  64. testsuccess aptget install testing2:i386 -y -o APT::Status-Fd=3
  65. testfileequal './apt-progress.log' 'dlstatus:1:0.0000:Retrieving file 1 of 1
  66. dlstatus:1:100.0000:Retrieving file 1 of 1
  67. pmstatus:dpkg-exec:0.0000:Running dpkg
  68. pmstatus:testing2:0.0000:Installing testing2 (i386)
  69. pmstatus:testing2:16.6667:Preparing testing2 (i386)
  70. pmstatus:testing2:33.3333:Unpacking testing2 (i386)
  71. pmstatus:testing2:50.0000:Preparing to configure testing2 (i386)
  72. pmstatus:dpkg-exec:50.0000:Running dpkg
  73. pmstatus:testing2:50.0000:Configuring testing2 (i386)
  74. pmstatus:testing2:66.6667:Configuring testing2 (i386)
  75. pmstatus:testing2:83.3333:Installed testing2 (i386)'
  76. rm -f apt-progress*.log