/discovery/discovery_test.go

https://bitbucket.org/marthjod/ansible-one-inventory · Go · 118 lines · 108 code · 10 blank · 0 comment · 4 complexity · 223b4da7f682b12399b1da3005a57f63 MD5 · raw file

  1. package discovery_test
  2. import (
  3. "encoding/xml"
  4. "github.com/marthjod/ansible-one-inventory/discovery"
  5. "github.com/marthjod/ansible-one-inventory/filter"
  6. "github.com/marthjod/ansible-one-inventory/hostnameextractor"
  7. "github.com/marthjod/ansible-one-inventory/model"
  8. "github.com/marthjod/gocart/ocatypes"
  9. "github.com/marthjod/gocart/vmpool"
  10. "reflect"
  11. "testing"
  12. )
  13. var (
  14. vmPool = &vmpool.VmPool{
  15. Vms: []*ocatypes.Vm{
  16. {
  17. Name: "first-vm",
  18. UserTemplate: ocatypes.UserTemplate{
  19. Items: ocatypes.Tags{
  20. ocatypes.Tag{
  21. XMLName: xml.Name{
  22. Local: "CUSTOM_FQDN",
  23. },
  24. Content: "vm-01.example.com",
  25. },
  26. },
  27. },
  28. },
  29. {
  30. Name: "second-vm",
  31. UserTemplate: ocatypes.UserTemplate{
  32. Items: ocatypes.Tags{
  33. ocatypes.Tag{
  34. XMLName: xml.Name{
  35. Local: "CUSTOM_FQDN",
  36. },
  37. Content: "vm-02.example.com",
  38. },
  39. },
  40. },
  41. },
  42. {
  43. Name: "web-staging-west",
  44. },
  45. },
  46. }
  47. vmNameExtractor = hostnameextractor.VmNameExtractor{}
  48. userTemplateExtractor = hostnameextractor.UserTemplateExtractor{
  49. Field: "CUSTOM_FQDN",
  50. }
  51. )
  52. func TestGetHostnamesVmNameExtractor(t *testing.T) {
  53. expected := []string{
  54. "first-vm",
  55. "second-vm",
  56. "web-staging-west",
  57. }
  58. actual := discovery.GetHostnames(vmPool, &vmNameExtractor)
  59. if !reflect.DeepEqual(actual, expected) {
  60. t.Errorf("Unexpected return value. Expected:\n%+v\nActual:\n%+v", expected, actual)
  61. }
  62. }
  63. func TestGetHostnamesUserTemplateExtractor(t *testing.T) {
  64. expected := []string{
  65. "vm-01.example.com",
  66. "vm-02.example.com",
  67. "",
  68. }
  69. actual := discovery.GetHostnames(vmPool, &userTemplateExtractor)
  70. if !reflect.DeepEqual(actual, expected) {
  71. t.Errorf("Unexpected return value. Expected:\n%+v\nActual:\n%+v", expected, actual)
  72. }
  73. }
  74. func TestGetInventoryGroups(t *testing.T) {
  75. expected := &model.Inventory{
  76. "webservers": []string{
  77. "web-staging-east",
  78. },
  79. "westcoast": []string{
  80. "db-production-west",
  81. },
  82. }
  83. hostNames := []string{
  84. "web-staging-east",
  85. "db-production-west",
  86. }
  87. filters := filter.GroupFilters{
  88. "webservers": "^web",
  89. "westcoast": "west$",
  90. }
  91. actual := discovery.GetInventoryGroups(hostNames, filters)
  92. if !reflect.DeepEqual(actual, expected) {
  93. t.Errorf("Unexpected return value. Expected:\n%v\nActual:\n%v", expected, actual)
  94. }
  95. }
  96. func TestGetInventoryGroupsErr(t *testing.T) {
  97. expected := &model.Inventory{}
  98. hostNames := []string{
  99. "web-staging-east",
  100. }
  101. filters := filter.GroupFilters{
  102. "foo": "(invalid regexp",
  103. }
  104. actual := discovery.GetInventoryGroups(hostNames, filters)
  105. if !reflect.DeepEqual(actual, expected) {
  106. t.Errorf("Unexpected return value. Expected:\n%vnActual:\n%v", expected, actual)
  107. }
  108. }