forked from hashicorp/terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hashicorp#2087: add consul_agent_service acceptance test
- Loading branch information
1 parent
65ebbda
commit 929e3cd
Showing
2 changed files
with
86 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 85 additions & 0 deletions
85
builtin/providers/consul/resource_consul_agent_service_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package consul | ||
|
||
import ( | ||
"fmt" | ||
"testing" | ||
|
||
consulapi "github.com/hashicorp/consul/api" | ||
"github.com/hashicorp/terraform/helper/resource" | ||
"github.com/hashicorp/terraform/terraform" | ||
) | ||
|
||
func TestAccConsulAgentService_basic(t *testing.T) { | ||
resource.Test(t, resource.TestCase{ | ||
PreCheck: func() {}, | ||
Providers: testAccProviders, | ||
CheckDestroy: testAccCheckConsulAgentServiceDestroy, | ||
Steps: []resource.TestStep{ | ||
resource.TestStep{ | ||
Config: testAccConsulAgentServiceConfig, | ||
Check: resource.ComposeTestCheckFunc( | ||
testAccCheckConsulAgentServiceExists(), | ||
testAccCheckConsulAgentServiceValue("consul_agent_service.app", "address", "www.google.com"), | ||
testAccCheckConsulAgentServiceValue("consul_agent_service.app", "id", "google"), | ||
testAccCheckConsulAgentServiceValue("consul_agent_service.app", "name", "google"), | ||
), | ||
}, | ||
}, | ||
}) | ||
} | ||
|
||
func testAccCheckConsulAgentServiceDestroy(s *terraform.State) error { | ||
agent := testAccProvider.Meta().(*consulapi.Client).Agent() | ||
services, err := agent.Services() | ||
if err != nil { | ||
return fmt.Errorf("Could not retrieve services: %#v", err) | ||
} | ||
_, ok := services["google"] | ||
if ok { | ||
return fmt.Errorf("Service still exists: %#v", "google") | ||
} | ||
return nil | ||
} | ||
|
||
func testAccCheckConsulAgentServiceExists() resource.TestCheckFunc { | ||
return func(s *terraform.State) error { | ||
agent := testAccProvider.Meta().(*consulapi.Client).Agent() | ||
services, err := agent.Services() | ||
if err != nil { | ||
return err | ||
} | ||
_, ok := services["google"] | ||
if !ok { | ||
return fmt.Errorf("Service does not exist: %#v", "google") | ||
} | ||
return nil | ||
} | ||
} | ||
|
||
func testAccCheckConsulAgentServiceValue(n, attr, val string) resource.TestCheckFunc { | ||
return func(s *terraform.State) error { | ||
rn, ok := s.RootModule().Resources[n] | ||
if !ok { | ||
return fmt.Errorf("Resource not found") | ||
} | ||
out, ok := rn.Primary.Attributes[attr] | ||
if !ok { | ||
return fmt.Errorf("Attribute '%s' not found: %#v", attr, rn.Primary.Attributes) | ||
} | ||
if val != "<any>" && out != val { | ||
return fmt.Errorf("Attribute '%s' value '%s' != '%s'", attr, out, val) | ||
} | ||
if val == "<any>" && out == "" { | ||
return fmt.Errorf("Attribute '%s' value '%s'", attr, out) | ||
} | ||
return nil | ||
} | ||
} | ||
|
||
const testAccConsulAgentServiceConfig = ` | ||
resource "consul_agent_service" "app" { | ||
name = "google" | ||
address = "www.google.com" | ||
port = 80 | ||
} | ||
` |