preflight_test.go 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. package preflight
  2. import (
  3. "testing"
  4. . ".."
  5. )
  6. func TestPackageUpdateDepMissing(t *testing.T) {
  7. PlaybookTest{
  8. Path: "playbooks/package_update_dep_missing.yml",
  9. ExitCode: 2,
  10. Output: []string{
  11. "check \"package_update\":",
  12. "Could not perform a yum update.",
  13. "break-yum-update-1.0-2.noarch requires package-that-does-not-exist",
  14. },
  15. }.Run(t)
  16. }
  17. func TestPackageUpdateRepoBroken(t *testing.T) {
  18. PlaybookTest{
  19. Path: "playbooks/package_update_repo_broken.yml",
  20. ExitCode: 2,
  21. Output: []string{
  22. "check \"package_update\":",
  23. "Error with yum repository configuration: Cannot find a valid baseurl for repo",
  24. },
  25. }.Run(t)
  26. }
  27. func TestPackageUpdateRepoDisabled(t *testing.T) {
  28. PlaybookTest{
  29. Path: "playbooks/package_update_repo_disabled.yml",
  30. ExitCode: 0,
  31. Output: []string{
  32. "CHECK [package_update",
  33. },
  34. }.Run(t)
  35. }
  36. func TestPackageUpdateRepoUnreachable(t *testing.T) {
  37. PlaybookTest{
  38. Path: "playbooks/package_update_repo_unreachable.yml",
  39. ExitCode: 2,
  40. Output: []string{
  41. "check \"package_update\":",
  42. "Error getting data from at least one yum repository",
  43. },
  44. }.Run(t)
  45. }
  46. func TestPackageVersionMatches(t *testing.T) {
  47. PlaybookTest{
  48. Path: "playbooks/package_version_matches.yml",
  49. ExitCode: 0,
  50. Output: []string{
  51. "CHECK [package_version",
  52. },
  53. }.Run(t)
  54. }
  55. func TestPackageVersionMismatches(t *testing.T) {
  56. PlaybookTest{
  57. Path: "playbooks/package_version_mismatches.yml",
  58. ExitCode: 2,
  59. Output: []string{
  60. "check \"package_version\":",
  61. "Not all of the required packages are available at their requested version",
  62. },
  63. }.Run(t)
  64. }
  65. func TestPackageVersionMultiple(t *testing.T) {
  66. PlaybookTest{
  67. Path: "playbooks/package_version_multiple.yml",
  68. ExitCode: 2,
  69. Output: []string{
  70. "check \"package_version\":",
  71. "Multiple minor versions of these packages are available",
  72. },
  73. }.Run(t)
  74. }
  75. func TestPackageAvailabilityMissingRequired(t *testing.T) {
  76. PlaybookTest{
  77. Path: "playbooks/package_availability_missing_required.yml",
  78. ExitCode: 2,
  79. Output: []string{
  80. "check \"package_availability\":",
  81. "Cannot install all of the necessary packages.",
  82. "atomic-openshift",
  83. },
  84. }.Run(t)
  85. }
  86. func TestPackageAvailabilitySucceeds(t *testing.T) {
  87. PlaybookTest{
  88. Path: "playbooks/package_availability_succeeds.yml",
  89. ExitCode: 0,
  90. Output: []string{
  91. "CHECK [package_availability",
  92. },
  93. }.Run(t)
  94. }