Code Monkey home page Code Monkey logo

Comments (10)

craigcarl-oracle avatar craigcarl-oracle commented on August 15, 2024

Yes, working on it.

from terraform-provider-oci.

mikejihbe avatar mikejihbe commented on August 15, 2024

The SDK is private, but you shouldn't need to pull it since it's vendored. Go >= 1.6 should build the sdk just fine.

from terraform-provider-oci.

brandonmartin avatar brandonmartin commented on August 15, 2024

took another look at my setup and discovered i wasn't building from a place under $GOPATH so it wasn't using the vendor directory, doh! thanks for the help gents. confirmed working with go1.8.

from terraform-provider-oci.

mikejihbe avatar mikejihbe commented on August 15, 2024

Craig, something like this should work to build every single time.

export GOPATH=~/my/code/GOPATH
mkdir -p $GOPATH/src/github.com/oracle
go get github.com/oracle/terraform-provider-baremetal
cd $GOPATH/src/github.com/oracle/terraform-provider-baremetal
make cross

from terraform-provider-oci.

mikejihbe avatar mikejihbe commented on August 15, 2024

That said, my latest push does have a problem. Looking at it now.

from terraform-provider-oci.

mikejihbe avatar mikejihbe commented on August 15, 2024

Actually, I lied, master is fine, my problem is only on a local branch.

from terraform-provider-oci.

craigcarl-oracle avatar craigcarl-oracle commented on August 15, 2024

@mikejihbe @josephholsten Still not building -

$ go version
go version go1.8 darwin/amd64

$ export GOPATH=~/my/code/GOPATH/src/github.com/oracle
$ mkdir -p $GOPATH
$ go get github.com/oracle/terraform-provider-baremetal
$ cd GOPATH/src/github.com/oracle/terraform-provider-baremetal

gets me -

$ make clean cross
rm -rf terraform-provider-baremetal
rm -rf bin/*
TF_ACC=1 go test -v
=== RUN   TestCoreInstanceConsoleHistoriesDatasource
=== RUN   TestResourceShowConsoleHistory
--- PASS: TestResourceShowConsoleHistory (0.03s)
--- PASS: TestCoreInstanceConsoleHistoriesDatasource (0.03s)
=== RUN   TestResourceCoreConsoleHistoryTestSuite
=== RUN   TestCreateResourceCoreInstanceConsoleHistory
--- FAIL: TestCreateResourceCoreInstanceConsoleHistory (0.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_console_history.t: 1 error occurred:

		* baremetal_core_console_history.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
--- FAIL: TestResourceCoreConsoleHistoryTestSuite (0.03s)
=== RUN   TestDatasourceCoreCpeTestSuite
=== RUN   TestCpeList
--- PASS: TestCpeList (0.04s)
=== RUN   TestCpePagedList
--- PASS: TestCpePagedList (0.04s)
--- PASS: TestDatasourceCoreCpeTestSuite (0.07s)
=== RUN   TestResourceCoreCpeTestSuite
=== RUN   TestCreateResourceCoreCpe
--- PASS: TestCreateResourceCoreCpe (0.04s)
=== RUN   TestDeleteResourceCoreCpe
--- PASS: TestDeleteResourceCoreCpe (0.04s)
=== RUN   TestUpdateForcesNewCoreCpe
--- PASS: TestUpdateForcesNewCoreCpe (0.04s)
--- PASS: TestResourceCoreCpeTestSuite (0.13s)
=== RUN   TestResourceCoreDHCPOptionsDatasourceTestSuite
=== RUN   TestReadDHCPOptions
--- PASS: TestReadDHCPOptions (0.03s)
=== RUN   TestReadDHCPOptionsWithPagination
--- PASS: TestReadDHCPOptionsWithPagination (0.02s)
--- PASS: TestResourceCoreDHCPOptionsDatasourceTestSuite (0.05s)
=== RUN   TestResourceCoreDHCPOptionsTestSuite
=== RUN   TestCreateResourceCoreDHCPOptions
--- FAIL: TestCreateResourceCoreDHCPOptions (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_dhcp_options.t: 1 error occurred:

		* baremetal_core_dhcp_options.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_dhcp_options.t (destroy): 1 error occurred:

		* baremetal_core_dhcp_options.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_dhcp_options.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  options.# = 2
		  options.0.custom_dns_servers.# = 1
		  options.0.custom_dns_servers.0 = custom_dns_servers
		  options.0.server_type = server_type
		  options.0.type = type
		  options.1.custom_dns_servers.# = 1
		  options.1.custom_dns_servers.0 = custom_dns_servers
		  options.1.server_type = server_type
		  options.1.type = type
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:54.498627658 -0700 PDT
		  vcn_id = vcn_id
=== RUN   TestDeleteDHCPOptions
--- FAIL: TestDeleteDHCPOptions (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_dhcp_options.t: 1 error occurred:

		* baremetal_core_dhcp_options.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_dhcp_options.t (destroy): 1 error occurred:

		* baremetal_core_dhcp_options.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_dhcp_options.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  options.# = 2
		  options.0.custom_dns_servers.# = 1
		  options.0.custom_dns_servers.0 = custom_dns_servers
		  options.0.server_type = server_type
		  options.0.type = type
		  options.1.custom_dns_servers.# = 1
		  options.1.custom_dns_servers.0 = custom_dns_servers
		  options.1.server_type = server_type
		  options.1.type = type
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:54.52038855 -0700 PDT
		  vcn_id = vcn_id
=== RUN   TestUpdateDHCPOptions
--- FAIL: TestUpdateDHCPOptions (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_dhcp_options.t: 1 error occurred:

		* baremetal_core_dhcp_options.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_dhcp_options.t (destroy): 1 error occurred:

		* baremetal_core_dhcp_options.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_dhcp_options.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  options.# = 2
		  options.0.custom_dns_servers.# = 1
		  options.0.custom_dns_servers.0 = custom_dns_servers
		  options.0.server_type = server_type
		  options.0.type = type
		  options.1.custom_dns_servers.# = 1
		  options.1.custom_dns_servers.0 = custom_dns_servers
		  options.1.server_type = server_type
		  options.1.type = type
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:54.543521476 -0700 PDT
		  vcn_id = vcn_id
--- FAIL: TestResourceCoreDHCPOptionsTestSuite (0.07s)
=== RUN   TestCoreDrgAttachmentDatasourceTestSuite
=== RUN   TestReadDrgAttachments
--- PASS: TestReadDrgAttachments (0.03s)
=== RUN   TestReadPagedDrgAttachments
--- PASS: TestReadPagedDrgAttachments (0.04s)
--- PASS: TestCoreDrgAttachmentDatasourceTestSuite (0.06s)
=== RUN   TestResourceCoreDrgAttachmentTestSuite
=== RUN   TestCreateResourceCoreDrgAttachment
--- FAIL: TestCreateResourceCoreDrgAttachment (0.04s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_drg_attachment.t: 1 error occurred:

		* baremetal_core_drg_attachment.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_drg_attachment.t (destroy): 1 error occurred:

		* baremetal_core_drg_attachment.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_drg_attachment.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  drg_id = drg_id
		  state = ATTACHED
		  time_created = 2017-04-02 17:54:54.631517342 -0700 PDT
		  vcn_id = vcn_id
=== RUN   TestDetachVolume
--- FAIL: TestDetachVolume (0.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_drg_attachment.t: 1 error occurred:

		* baremetal_core_drg_attachment.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_drg_attachment.t (destroy): 1 error occurred:

		* baremetal_core_drg_attachment.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_drg_attachment.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  drg_id = drg_id
		  state = ATTACHED
		  time_created = 2017-04-02 17:54:54.668222697 -0700 PDT
		  vcn_id = vcn_id
--- FAIL: TestResourceCoreDrgAttachmentTestSuite (0.07s)
=== RUN   TestResourceCoreDrgsTestSuite
=== RUN   TestReadDrgs
--- PASS: TestReadDrgs (0.04s)
=== RUN   TestReadDrgsPaged
--- PASS: TestReadDrgsPaged (0.04s)
--- PASS: TestResourceCoreDrgsTestSuite (0.08s)
=== RUN   TestResourceCoreDrgTestSuite
=== RUN   TestCreateResourceCoreDrg
--- FAIL: TestCreateResourceCoreDrg (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_drg.t: 1 error occurred:

		* baremetal_core_drg.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_drg.t (destroy): 1 error occurred:

		* baremetal_core_drg.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_drg.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:54.776608015 -0700 PDT
=== RUN   TestCreateResourceCoreDrgWithoutDisplayName
--- FAIL: TestCreateResourceCoreDrgWithoutDisplayName (0.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_drg.t: 1 error occurred:

		* baremetal_core_drg.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_drg.t (destroy): 1 error occurred:

		* baremetal_core_drg.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_drg.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:54.801350585 -0700 PDT
=== RUN   TestDeleteDrg
--- FAIL: TestDeleteDrg (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_drg.t: 1 error occurred:

		* baremetal_core_drg.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_drg.t (destroy): 1 error occurred:

		* baremetal_core_drg.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_drg.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:54.83005695 -0700 PDT
--- FAIL: TestResourceCoreDrgTestSuite (0.08s)
=== RUN   TestResourceCoreImagesTestSuite
=== RUN   TestReadImages
--- PASS: TestReadImages (0.03s)
=== RUN   TestReadImagesWithPagination
--- PASS: TestReadImagesWithPagination (0.03s)
--- PASS: TestResourceCoreImagesTestSuite (0.07s)
=== RUN   TestResourceCoreImageTestSuite
=== RUN   TestCreateImage
--- FAIL: TestCreateImage (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_image.t: 1 error occurred:

		* baremetal_core_image.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_image.t (destroy): 1 error occurred:

		* baremetal_core_image.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_image.t:
		  ID = id
		  base_image_id = base_image_id
		  compartment_id = compartment_id
		  create_image_allowed = true
		  display_name = display_name
		  instance_id = instance_id
		  operating_system = operating_system
		  operating_system_version = operating_system_version
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:54.925923928 -0700 PDT
=== RUN   TestCreateImageWithoutDisplayName
--- FAIL: TestCreateImageWithoutDisplayName (0.04s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_image.t: 1 error occurred:

		* baremetal_core_image.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_image.t (destroy): 1 error occurred:

		* baremetal_core_image.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_image.t:
		  ID = id
		  base_image_id = base_image_id
		  compartment_id = compartment_id
		  create_image_allowed = true
		  display_name = display_name
		  instance_id = instance_id
		  operating_system = operating_system
		  operating_system_version = operating_system_version
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:54.947334175 -0700 PDT
=== RUN   TestDeleteImage
--- FAIL: TestDeleteImage (0.04s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_image.t: 1 error occurred:

		* baremetal_core_image.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_image.t (destroy): 1 error occurred:

		* baremetal_core_image.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_image.t:
		  ID = id
		  base_image_id = base_image_id
		  compartment_id = compartment_id
		  create_image_allowed = true
		  display_name = display_name
		  instance_id = instance_id
		  operating_system = operating_system
		  operating_system_version = operating_system_version
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:54.989033268 -0700 PDT
=== RUN   TestUpdateImageDisplayName
--- FAIL: TestUpdateImageDisplayName (0.04s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_image.t: 1 error occurred:

		* baremetal_core_image.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_image.t (destroy): 1 error occurred:

		* baremetal_core_image.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_image.t:
		  ID = id
		  base_image_id = base_image_id
		  compartment_id = compartment_id
		  create_image_allowed = true
		  display_name = display_name
		  instance_id = instance_id
		  operating_system = operating_system
		  operating_system_version = operating_system_version
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:55.024970822 -0700 PDT
--- FAIL: TestResourceCoreImageTestSuite (0.14s)
=== RUN   TestResourceCoreInstancesTestSuite
=== RUN   TestResourceListInstances
--- PASS: TestResourceListInstances (0.04s)
=== RUN   TestResourceListInstancesPaged
--- PASS: TestResourceListInstancesPaged (0.04s)
--- PASS: TestResourceCoreInstancesTestSuite (0.08s)
=== RUN   TestIsStatefulResource
--- PASS: TestIsStatefulResource (0.00s)
=== RUN   TestResourceCoreInstanceTestSuite
=== RUN   TestCreateResourceCoreInstance
--- FAIL: TestCreateResourceCoreInstance (0.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_instance.t: 1 error occurred:

		* baremetal_core_instance.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_instance.t (destroy): 1 error occurred:

		* baremetal_core_instance.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_instance.t:
		  ID = id
		  availability_domain = availability_domain
		  compartment_id = compartment_id
		  display_name = display_name
		  image = imageid
		  metadata.% = 1
		  metadata.ssh_authorized_keys = mypublickey
		  region = region
		  shape = shapeid
		  state = RUNNING
		  subnet_id = subnetid
		  time_created = 2017-04-02 17:54:55.14841023 -0700 PDT
=== RUN   TestCreateResourceCoreInstanceWithoutDisplayName
--- FAIL: TestCreateResourceCoreInstanceWithoutDisplayName (0.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_instance.t: 1 error occurred:

		* baremetal_core_instance.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_instance.t (destroy): 1 error occurred:

		* baremetal_core_instance.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_instance.t:
		  ID = id
		  availability_domain = availability_domain
		  compartment_id = compartment_id
		  display_name = display_name
		  image = imageid
		  metadata.% = 1
		  metadata.ssh_authorized_keys = mypublickey
		  region = region
		  shape = shapeid
		  state = RUNNING
		  subnet_id = subnetid
		  time_created = 2017-04-02 17:54:55.176810646 -0700 PDT
=== RUN   TestTerminateInstance
--- FAIL: TestTerminateInstance (0.04s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_instance.t: 1 error occurred:

		* baremetal_core_instance.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_instance.t (destroy): 1 error occurred:

		* baremetal_core_instance.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_instance.t:
		  ID = id
		  availability_domain = availability_domain
		  compartment_id = compartment_id
		  display_name = display_name
		  image = imageid
		  metadata.% = 1
		  metadata.ssh_authorized_keys = mypublickey
		  region = region
		  shape = shapeid
		  state = RUNNING
		  subnet_id = subnetid
		  time_created = 2017-04-02 17:54:55.210147942 -0700 PDT
=== RUN   TestUpdateAvailabilityDomainForcesNewInstance
--- FAIL: TestUpdateAvailabilityDomainForcesNewInstance (0.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_instance.t: 1 error occurred:

		* baremetal_core_instance.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_instance.t (destroy): 1 error occurred:

		* baremetal_core_instance.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_instance.t:
		  ID = id
		  availability_domain = availability_domain
		  compartment_id = compartment_id
		  display_name = display_name
		  image = imageid
		  metadata.% = 1
		  metadata.ssh_authorized_keys = mypublickey
		  region = region
		  shape = shapeid
		  state = RUNNING
		  subnet_id = subnetid
		  time_created = 2017-04-02 17:54:55.249007599 -0700 PDT
=== RUN   TestUpdateInstanceDisplayName
--- FAIL: TestUpdateInstanceDisplayName (0.04s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_instance.t: 1 error occurred:

		* baremetal_core_instance.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_instance.t (destroy): 1 error occurred:

		* baremetal_core_instance.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_instance.t:
		  ID = id
		  availability_domain = availability_domain
		  compartment_id = compartment_id
		  display_name = display_name
		  image = imageid
		  metadata.% = 1
		  metadata.ssh_authorized_keys = mypublickey
		  region = region
		  shape = shapeid
		  state = RUNNING
		  subnet_id = subnetid
		  time_created = 2017-04-02 17:54:55.276791218 -0700 PDT
--- FAIL: TestResourceCoreInstanceTestSuite (0.17s)
=== RUN   TestCoreInternetGatewayDatasource
=== RUN   TestResourceListInternetGateways
--- PASS: TestResourceListInternetGateways (0.03s)
=== RUN   TestResourceListInternetGatewaysPaged
--- PASS: TestResourceListInternetGatewaysPaged (0.03s)
--- PASS: TestCoreInternetGatewayDatasource (0.06s)
=== RUN   TestResourceCoreInternetGatewayTestSuite
=== RUN   TestCreateResourceCoreInternetGateway
--- FAIL: TestCreateResourceCoreInternetGateway (0.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_internet_gateway.t: 1 error occurred:

		* baremetal_core_internet_gateway.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_internet_gateway.t (destroy): 1 error occurred:

		* baremetal_core_internet_gateway.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_internet_gateway.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  enabled = true
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:55.37781284 -0700 PDT
		  time_modified = 2017-04-02 17:54:55.37781284 -0700 PDT
		  vcn_id = vcnid
=== RUN   TestDeleteInternetGateway
--- FAIL: TestDeleteInternetGateway (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_internet_gateway.t: 1 error occurred:

		* baremetal_core_internet_gateway.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_internet_gateway.t (destroy): 1 error occurred:

		* baremetal_core_internet_gateway.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_internet_gateway.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  enabled = true
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:55.40554656 -0700 PDT
		  time_modified = 2017-04-02 17:54:55.40554656 -0700 PDT
		  vcn_id = vcnid
=== RUN   TestUpdateCompartmentIDForcesNewInternetGateway
--- FAIL: TestUpdateCompartmentIDForcesNewInternetGateway (0.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_internet_gateway.t: 1 error occurred:

		* baremetal_core_internet_gateway.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_internet_gateway.t (destroy): 1 error occurred:

		* baremetal_core_internet_gateway.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_internet_gateway.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  enabled = true
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:55.426926818 -0700 PDT
		  time_modified = 2017-04-02 17:54:55.426926818 -0700 PDT
		  vcn_id = vcnid
--- FAIL: TestResourceCoreInternetGatewayTestSuite (0.08s)
=== RUN   TestDatasourceCoreIPSecConfigTestSuite
=== RUN   TestIPSecConfig
--- PASS: TestIPSecConfig (0.02s)
--- PASS: TestDatasourceCoreIPSecConfigTestSuite (0.02s)
=== RUN   TestDatasourceCoreIPSecStatusTestSuite
=== RUN   TestIPSecStatus
--- PASS: TestIPSecStatus (0.03s)
--- PASS: TestDatasourceCoreIPSecStatusTestSuite (0.03s)
=== RUN   TestDatasourceCoreIPSecTestSuite
=== RUN   TestResourceListIPConnections
--- PASS: TestResourceListIPConnections (0.03s)
=== RUN   TestResourceListPagedIPConnections
--- PASS: TestResourceListPagedIPConnections (0.03s)
--- PASS: TestDatasourceCoreIPSecTestSuite (0.06s)
=== RUN   TestResourceCoreIPSecTestSuite
=== RUN   TestCreateResourceCoreSubnet
--- PASS: TestCreateResourceCoreSubnet (0.02s)
=== RUN   TestCreateResourceCoreSubnetWithoutDisplayName
--- PASS: TestCreateResourceCoreSubnetWithoutDisplayName (0.03s)
=== RUN   TestTerminateIPSec
--- PASS: TestTerminateIPSec (0.04s)
=== RUN   TestUpdateCompartmentIDForcesNewIPSec
--- PASS: TestUpdateCompartmentIDForcesNewIPSec (0.04s)
--- PASS: TestResourceCoreIPSecTestSuite (0.13s)
=== RUN   TestResourceCoreRouteTablesTestSuite
=== RUN   TestResourceListRouteTables
--- PASS: TestResourceListRouteTables (0.02s)
=== RUN   TestResourceListRouteTablesPaged
--- PASS: TestResourceListRouteTablesPaged (0.03s)
--- PASS: TestResourceCoreRouteTablesTestSuite (0.05s)
=== RUN   TestResourceCoreRouteTableTestSuite
=== RUN   TestCreateResourceCoreRouteTable
--- FAIL: TestCreateResourceCoreRouteTable (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_route_table.t: 1 error occurred:

		* baremetal_core_route_table.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_route_table.t (destroy): 1 error occurred:

		* baremetal_core_route_table.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_route_table.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  route_rules.# = 2
		  route_rules.0.cidr_block = cidr_block
		  route_rules.0.network_entity_id = network_entity_id
		  route_rules.1.cidr_block = cidr_block
		  route_rules.1.network_entity_id = network_entity_id
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:55.743031717 -0700 PDT
		  time_modified = 2017-04-02 17:54:55.743031717 -0700 PDT
		  vcn_id = vcn_id
=== RUN   TestDeleteRouteTable
--- FAIL: TestDeleteRouteTable (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_route_table.t: 1 error occurred:

		* baremetal_core_route_table.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_route_table.t (destroy): 1 error occurred:

		* baremetal_core_route_table.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_route_table.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  route_rules.# = 2
		  route_rules.0.cidr_block = cidr_block
		  route_rules.0.network_entity_id = network_entity_id
		  route_rules.1.cidr_block = cidr_block
		  route_rules.1.network_entity_id = network_entity_id
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:55.765632362 -0700 PDT
		  time_modified = 2017-04-02 17:54:55.765632362 -0700 PDT
		  vcn_id = vcn_id
=== RUN   TestUpdateRouteTable
--- FAIL: TestUpdateRouteTable (0.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_route_table.t: 1 error occurred:

		* baremetal_core_route_table.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_route_table.t (destroy): 1 error occurred:

		* baremetal_core_route_table.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_route_table.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  route_rules.# = 2
		  route_rules.0.cidr_block = cidr_block
		  route_rules.0.network_entity_id = network_entity_id
		  route_rules.1.cidr_block = cidr_block
		  route_rules.1.network_entity_id = network_entity_id
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:55.78637359 -0700 PDT
		  time_modified = 2017-04-02 17:54:55.78637359 -0700 PDT
		  vcn_id = vcn_id
--- FAIL: TestResourceCoreRouteTableTestSuite (0.08s)
=== RUN   TestCoreSecurityListDatasourceTestSuite
=== RUN   TestReadSecurityLists
--- PASS: TestReadSecurityLists (0.03s)
--- PASS: TestCoreSecurityListDatasourceTestSuite (0.03s)
=== RUN   TestResourceCoreSecurityListTestSuite
=== RUN   TestCreateResourceCoreSecurityList
--- FAIL: TestCreateResourceCoreSecurityList (0.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_security_list.t: 1 error occurred:

		* baremetal_core_security_list.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_security_list.t (destroy): 1 error occurred:

		* baremetal_core_security_list.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_security_list.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  egress_security_rules.# = 1
		  egress_security_rules.0.destination = destination
		  egress_security_rules.0.icmp_options.# = 1
		  egress_security_rules.0.icmp_options.0.code = 1
		  egress_security_rules.0.icmp_options.0.type = 2
		  egress_security_rules.0.protocol = protocol
		  egress_security_rules.0.stateless = true
		  egress_security_rules.0.tcp_options.# = 0
		  egress_security_rules.0.udp_options.# = 0
		  ingress_security_rules.# = 1
		  ingress_security_rules.0.icmp_options.# = 0
		  ingress_security_rules.0.protocol = protocol
		  ingress_security_rules.0.source = source
		  ingress_security_rules.0.tcp_options.# = 1
		  ingress_security_rules.0.tcp_options.0.max = 2
		  ingress_security_rules.0.tcp_options.0.min = 1
		  ingress_security_rules.0.udp_options.# = 0
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:55.84546307 -0700 PDT
		  vcn_id = vcn_id
=== RUN   TestDeleteSecurityList
--- FAIL: TestDeleteSecurityList (0.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_security_list.t: 1 error occurred:

		* baremetal_core_security_list.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_security_list.t (destroy): 1 error occurred:

		* baremetal_core_security_list.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_security_list.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  egress_security_rules.# = 1
		  egress_security_rules.0.destination = destination
		  egress_security_rules.0.icmp_options.# = 1
		  egress_security_rules.0.icmp_options.0.code = 1
		  egress_security_rules.0.icmp_options.0.type = 2
		  egress_security_rules.0.protocol = protocol
		  egress_security_rules.0.stateless = true
		  egress_security_rules.0.tcp_options.# = 0
		  egress_security_rules.0.udp_options.# = 0
		  ingress_security_rules.# = 1
		  ingress_security_rules.0.icmp_options.# = 0
		  ingress_security_rules.0.protocol = protocol
		  ingress_security_rules.0.source = source
		  ingress_security_rules.0.tcp_options.# = 1
		  ingress_security_rules.0.tcp_options.0.max = 2
		  ingress_security_rules.0.tcp_options.0.min = 1
		  ingress_security_rules.0.udp_options.# = 0
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:55.87385218 -0700 PDT
		  vcn_id = vcn_id
=== RUN   TestUpdateSecurityList
--- FAIL: TestUpdateSecurityList (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_security_list.t: 1 error occurred:

		* baremetal_core_security_list.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_security_list.t (destroy): 1 error occurred:

		* baremetal_core_security_list.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_security_list.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  egress_security_rules.# = 1
		  egress_security_rules.0.destination = destination
		  egress_security_rules.0.icmp_options.# = 1
		  egress_security_rules.0.icmp_options.0.code = 1
		  egress_security_rules.0.icmp_options.0.type = 2
		  egress_security_rules.0.protocol = protocol
		  egress_security_rules.0.stateless = true
		  egress_security_rules.0.tcp_options.# = 0
		  egress_security_rules.0.udp_options.# = 0
		  ingress_security_rules.# = 1
		  ingress_security_rules.0.icmp_options.# = 0
		  ingress_security_rules.0.protocol = protocol
		  ingress_security_rules.0.source = source
		  ingress_security_rules.0.tcp_options.# = 1
		  ingress_security_rules.0.tcp_options.0.max = 2
		  ingress_security_rules.0.tcp_options.0.min = 1
		  ingress_security_rules.0.udp_options.# = 0
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:55.905307797 -0700 PDT
		  vcn_id = vcn_id
--- FAIL: TestResourceCoreSecurityListTestSuite (0.09s)
=== RUN   TestResourceCoreShapeTestSuite
=== RUN   TestResourceReadCoreShape
--- PASS: TestResourceReadCoreShape (0.03s)
=== RUN   TestResourceReadCoreShapeWithPagination
--- PASS: TestResourceReadCoreShapeWithPagination (0.02s)
--- PASS: TestResourceCoreShapeTestSuite (0.05s)
=== RUN   TestResourceCoreSubnetsTestSuite
=== RUN   TestResourceListSubnets
--- PASS: TestResourceListSubnets (0.03s)
=== RUN   TestResourceListSubnetsWithPagination
--- PASS: TestResourceListSubnetsWithPagination (0.02s)
--- PASS: TestResourceCoreSubnetsTestSuite (0.05s)
=== RUN   TestResourceCoreSubnetTestSuite
=== RUN   TestCreateResourceCoreSubnet
--- FAIL: TestCreateResourceCoreSubnet (15.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_subnet.t: 1 error occurred:

		* baremetal_core_subnet.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_subnet.t (destroy): 1 error occurred:

		* baremetal_core_subnet.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_subnet.t:
		  ID = id
		  availability_domain = availabilitydomainid
		  cidr_block = 10.10.10.0/24
		  compartment_id = compartmentid
		  display_name = display_name
		  route_table_id = routetableid
		  security_list_ids.# = 2
		  security_list_ids.0 = slid1
		  security_list_ids.1 = slid2
		  state = AVAILABLE
		  time_created = 2017-04-02 17:54:56.03428397 -0700 PDT
		  vcn_id = vcnid
		  virtual_router_id = virtualrouterid
		  virtual_router_mac = virtualroutermac
=== RUN   TestCreateResourceCoreSubnetWithoutDisplayName
--- FAIL: TestCreateResourceCoreSubnetWithoutDisplayName (15.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_subnet.t: 1 error occurred:

		* baremetal_core_subnet.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_subnet.t (destroy): 1 error occurred:

		* baremetal_core_subnet.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_subnet.t:
		  ID = id
		  availability_domain = availabilitydomainid
		  cidr_block = 10.10.10.0/24
		  compartment_id = compartmentid
		  display_name =
		  route_table_id = routetableid
		  security_list_ids.# = 2
		  security_list_ids.0 = slid1
		  security_list_ids.1 = slid2
		  state = AVAILABLE
		  time_created = 2017-04-02 17:55:11.062170544 -0700 PDT
		  vcn_id = vcnid
		  virtual_router_id = virtualrouterid
		  virtual_router_mac = virtualroutermac
=== RUN   TestTerminateSubnet
--- FAIL: TestTerminateSubnet (15.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_subnet.t: 1 error occurred:

		* baremetal_core_subnet.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_subnet.t (destroy): 1 error occurred:

		* baremetal_core_subnet.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_subnet.t:
		  ID = id
		  availability_domain = availabilitydomainid
		  cidr_block = 10.10.10.0/24
		  compartment_id = compartmentid
		  display_name = display_name
		  route_table_id = routetableid
		  security_list_ids.# = 2
		  security_list_ids.0 = slid1
		  security_list_ids.1 = slid2
		  state = AVAILABLE
		  time_created = 2017-04-02 17:55:26.086452175 -0700 PDT
		  vcn_id = vcnid
		  virtual_router_id = virtualrouterid
		  virtual_router_mac = virtualroutermac
=== RUN   TestUpdateCompartmentIDForcesNewSubnet
--- FAIL: TestUpdateCompartmentIDForcesNewSubnet (15.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_subnet.t: 1 error occurred:

		* baremetal_core_subnet.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_subnet.t (destroy): 1 error occurred:

		* baremetal_core_subnet.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_subnet.t:
		  ID = id
		  availability_domain = availabilitydomainid
		  cidr_block = 10.10.10.0/24
		  compartment_id = compartmentid
		  display_name = display_name
		  route_table_id = routetableid
		  security_list_ids.# = 2
		  security_list_ids.0 = slid1
		  security_list_ids.1 = slid2
		  state = AVAILABLE
		  time_created = 2017-04-02 17:55:41.116188044 -0700 PDT
		  vcn_id = vcnid
		  virtual_router_id = virtualrouterid
		  virtual_router_mac = virtualroutermac
--- FAIL: TestResourceCoreSubnetTestSuite (60.11s)
=== RUN   TestResourceCoreVirtualNetworksTestSuite
=== RUN   TestReadVirtualNetworks
--- PASS: TestReadVirtualNetworks (0.03s)
=== RUN   TestReadVirtualNetworksWithPaging
--- PASS: TestReadVirtualNetworksWithPaging (0.02s)
--- PASS: TestResourceCoreVirtualNetworksTestSuite (0.05s)
=== RUN   TestResourceCoreVirtualNetworkTestSuite
=== RUN   TestCreateResourceCoreVirtualNetwork
--- FAIL: TestCreateResourceCoreVirtualNetwork (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_virtual_network.t: 1 error occurred:

		* baremetal_core_virtual_network.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_virtual_network.t (destroy): 1 error occurred:

		* baremetal_core_virtual_network.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_virtual_network.t:
		  ID = id
		  cidr_block = cidr_block
		  compartment_id = compartment_id
		  default_route_table_id = default_route_table_id
		  default_security_list_id = default_security_list_id
		  display_name = display_name
		  state = AVAILABLE
		  time_created = 2017-04-02 17:55:56.195604246 -0700 PDT
=== RUN   TestCreateResourceCoreVirtualNetworkWithoutDisplayName
--- FAIL: TestCreateResourceCoreVirtualNetworkWithoutDisplayName (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_virtual_network.t: 1 error occurred:

		* baremetal_core_virtual_network.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_virtual_network.t (destroy): 1 error occurred:

		* baremetal_core_virtual_network.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_virtual_network.t:
		  ID = id
		  cidr_block = cidr_block
		  compartment_id = compartment_id
		  default_route_table_id = default_route_table_id
		  default_security_list_id = default_security_list_id
		  display_name = display_name
		  state = AVAILABLE
		  time_created = 2017-04-02 17:55:56.212358191 -0700 PDT
=== RUN   TestDeleteResourceCoreVirtualNetwork
--- FAIL: TestDeleteResourceCoreVirtualNetwork (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_virtual_network.t: 1 error occurred:

		* baremetal_core_virtual_network.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_virtual_network.t (destroy): 1 error occurred:

		* baremetal_core_virtual_network.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_virtual_network.t:
		  ID = id
		  cidr_block = cidr_block
		  compartment_id = compartment_id
		  default_route_table_id = default_route_table_id
		  default_security_list_id = default_security_list_id
		  display_name = display_name
		  state = AVAILABLE
		  time_created = 2017-04-02 17:55:56.229082806 -0700 PDT
=== RUN   TestDeleteVirtualNetwork
--- FAIL: TestDeleteVirtualNetwork (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_virtual_network.t: 1 error occurred:

		* baremetal_core_virtual_network.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_virtual_network.t (destroy): 1 error occurred:

		* baremetal_core_virtual_network.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_virtual_network.t:
		  ID = id
		  cidr_block = cidr_block
		  compartment_id = compartment_id
		  default_route_table_id = default_route_table_id
		  default_security_list_id = default_security_list_id
		  display_name = display_name
		  state = AVAILABLE
		  time_created = 2017-04-02 17:55:56.245004383 -0700 PDT
=== RUN   TestUpdateCidrBlockForcesNewVirtualNetwork
--- FAIL: TestUpdateCidrBlockForcesNewVirtualNetwork (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_virtual_network.t: 1 error occurred:

		* baremetal_core_virtual_network.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_virtual_network.t (destroy): 1 error occurred:

		* baremetal_core_virtual_network.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_virtual_network.t:
		  ID = id
		  cidr_block = cidr_block
		  compartment_id = compartment_id
		  default_route_table_id = default_route_table_id
		  default_security_list_id = default_security_list_id
		  display_name = display_name
		  state = AVAILABLE
		  time_created = 2017-04-02 17:55:56.261789585 -0700 PDT
--- FAIL: TestResourceCoreVirtualNetworkTestSuite (0.08s)
=== RUN   TestResourceCoreVnicAttachmentsTestSuite
=== RUN   TestResourceReadCoreVnicAttachments
--- PASS: TestResourceReadCoreVnicAttachments (0.02s)
=== RUN   TestResourceReadCoreVnicAttachmentsWithPaging
--- PASS: TestResourceReadCoreVnicAttachmentsWithPaging (0.02s)
--- PASS: TestResourceCoreVnicAttachmentsTestSuite (0.04s)
=== RUN   TestDatasourceCoreVnicTestSuite
=== RUN   TestReadVnic
--- PASS: TestReadVnic (0.02s)
--- PASS: TestDatasourceCoreVnicTestSuite (0.02s)
=== RUN   TestResourceCoreVolumeAttachmentsTestSuite
=== RUN   TestReadVolumeAttachments
--- PASS: TestReadVolumeAttachments (0.02s)
=== RUN   TestReadVolumeAttachmentsWithPaging
--- PASS: TestReadVolumeAttachmentsWithPaging (0.02s)
--- PASS: TestResourceCoreVolumeAttachmentsTestSuite (0.04s)
=== RUN   TestResourceCoreVolumeAttachmentTestSuite
=== RUN   TestCreateResourceCoreVolumeAttachment
--- FAIL: TestCreateResourceCoreVolumeAttachment (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_volume_attachment.t: 1 error occurred:

		* baremetal_core_volume_attachment.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_volume_attachment.t (destroy): 1 error occurred:

		* baremetal_core_volume_attachment.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_volume_attachment.t:
		  ID = id
		  attachment_type = iscsi
		  availability_domain = availability_domain
		  chap_secret = chap_secret
		  chap_username = chap_username
		  compartment_id = compartment_id
		  display_name = display_name
		  instance_id = instance_id
		  ipv4 = ipv4
		  iqn = iqn
		  port = 12345
		  state = ATTACHED
		  time_created = 2017-04-02 17:55:56.382931813 -0700 PDT
		  volume_id = volume_id
=== RUN   TestDetachVolume
--- FAIL: TestDetachVolume (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_volume_attachment.t: 1 error occurred:

		* baremetal_core_volume_attachment.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_volume_attachment.t (destroy): 1 error occurred:

		* baremetal_core_volume_attachment.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_volume_attachment.t:
		  ID = id
		  attachment_type = iscsi
		  availability_domain = availability_domain
		  chap_secret = chap_secret
		  chap_username = chap_username
		  compartment_id = compartment_id
		  display_name = display_name
		  instance_id = instance_id
		  ipv4 = ipv4
		  iqn = iqn
		  port = 12345
		  state = ATTACHED
		  time_created = 2017-04-02 17:55:56.401076075 -0700 PDT
		  volume_id = volume_id
--- FAIL: TestResourceCoreVolumeAttachmentTestSuite (0.04s)
=== RUN   TestResourceCoreVolumeBackupsTestSuite
=== RUN   TestReadVolumeBackups
--- PASS: TestReadVolumeBackups (0.02s)
=== RUN   TestReadVolumeBackupsWithPagination
--- PASS: TestReadVolumeBackupsWithPagination (0.02s)
--- PASS: TestResourceCoreVolumeBackupsTestSuite (0.04s)
=== RUN   TestResourceCoreVolumeBackupTestSuite
=== RUN   TestCreateVolumeBackup
--- FAIL: TestCreateVolumeBackup (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_volume_backup.t: 1 error occurred:

		* baremetal_core_volume_backup.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_volume_backup.t (destroy): 1 error occurred:

		* baremetal_core_volume_backup.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_volume_backup.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  size_in_mbs = 1
		  state = AVAILABLE
		  time_created = 2017-04-02 17:55:56.462003777 -0700 PDT
		  time_request_received = 2017-04-02 17:55:56.462003777 -0700 PDT
		  unique_size_in_mbs = 1
		  volume_id = volume_id
=== RUN   TestCreateVolumeBackupWithoutDisplayName
--- FAIL: TestCreateVolumeBackupWithoutDisplayName (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_volume_backup.t: 1 error occurred:

		* baremetal_core_volume_backup.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_volume_backup.t (destroy): 1 error occurred:

		* baremetal_core_volume_backup.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_volume_backup.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  size_in_mbs = 1
		  state = AVAILABLE
		  time_created = 2017-04-02 17:55:56.482308434 -0700 PDT
		  time_request_received = 2017-04-02 17:55:56.482308434 -0700 PDT
		  unique_size_in_mbs = 1
		  volume_id = volume_id
=== RUN   TestDeleteVolumeBackup
--- FAIL: TestDeleteVolumeBackup (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_volume_backup.t: 1 error occurred:

		* baremetal_core_volume_backup.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_volume_backup.t (destroy): 1 error occurred:

		* baremetal_core_volume_backup.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_volume_backup.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  size_in_mbs = 1
		  state = AVAILABLE
		  time_created = 2017-04-02 17:55:56.499020493 -0700 PDT
		  time_request_received = 2017-04-02 17:55:56.499020493 -0700 PDT
		  unique_size_in_mbs = 1
		  volume_id = volume_id
=== RUN   TestUpdateVolumeBackupDisplayName
--- FAIL: TestUpdateVolumeBackupDisplayName (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_volume_backup.t: 1 error occurred:

		* baremetal_core_volume_backup.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_volume_backup.t (destroy): 1 error occurred:

		* baremetal_core_volume_backup.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_volume_backup.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  size_in_mbs = 1
		  state = AVAILABLE
		  time_created = 2017-04-02 17:55:56.516057106 -0700 PDT
		  time_request_received = 2017-04-02 17:55:56.516057106 -0700 PDT
		  unique_size_in_mbs = 1
		  volume_id = volume_id
=== RUN   TestUpdateVolumeIDForcesNewVolumeBackup
--- FAIL: TestUpdateVolumeIDForcesNewVolumeBackup (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_volume_backup.t: 1 error occurred:

		* baremetal_core_volume_backup.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_core_volume_backup.t (destroy): 1 error occurred:

		* baremetal_core_volume_backup.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_core_volume_backup.t:
		  ID = id
		  compartment_id = compartment_id
		  display_name = display_name
		  size_in_mbs = 1
		  state = AVAILABLE
		  time_created = 2017-04-02 17:55:56.532969011 -0700 PDT
		  time_request_received = 2017-04-02 17:55:56.532969011 -0700 PDT
		  unique_size_in_mbs = 1
		  volume_id = volume_id
--- FAIL: TestResourceCoreVolumeBackupTestSuite (0.09s)
=== RUN   TestResourceCoreVolumesTestSuite
=== RUN   TestReadVolumes
--- PASS: TestReadVolumes (0.02s)
=== RUN   TestReadVolumesWithPagination
--- PASS: TestReadVolumesWithPagination (0.02s)
--- PASS: TestResourceCoreVolumesTestSuite (0.05s)
=== RUN   TestResourceCoreVolumeTestSuite
=== RUN   TestCreateResourceCoreVolume
--- FAIL: TestCreateResourceCoreVolume (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_volume.t: 1 error occurred:

		* baremetal_core_volume.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestCreateResourceCoreVolumeWithoutDisplayName
--- FAIL: TestCreateResourceCoreVolumeWithoutDisplayName (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_volume.t: 1 error occurred:

		* baremetal_core_volume.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestDeleteVolume
--- FAIL: TestDeleteVolume (0.03s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_volume.t: 1 error occurred:

		* baremetal_core_volume.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestUpdateAvailabilityDomainForcesNewVolume
--- FAIL: TestUpdateAvailabilityDomainForcesNewVolume (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_volume.t: 1 error occurred:

		* baremetal_core_volume.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestUpdateCompartmentIdForcesNewVolume
--- FAIL: TestUpdateCompartmentIdForcesNewVolume (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_volume.t: 1 error occurred:

		* baremetal_core_volume.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestUpdateVolumeDisplayName
--- FAIL: TestUpdateVolumeDisplayName (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_core_volume.t: 1 error occurred:

		* baremetal_core_volume.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
--- FAIL: TestResourceCoreVolumeTestSuite (0.12s)
=== RUN   TestDatabaseDatabaseTestSuite
=== RUN   TestReadDatabase
--- PASS: TestReadDatabase (0.02s)
--- PASS: TestDatabaseDatabaseTestSuite (0.02s)
=== RUN   TestDatabaseDatabasesTestSuite
=== RUN   TestReadDatabases
--- PASS: TestReadDatabases (0.02s)
--- PASS: TestDatabaseDatabasesTestSuite (0.02s)
=== RUN   TestDatabaseDBHomeTestSuite
=== RUN   TestReadDBHome
--- PASS: TestReadDBHome (0.02s)
--- PASS: TestDatabaseDBHomeTestSuite (0.02s)
=== RUN   TestDatabaseDBHomesTestSuite
=== RUN   TestReadDBHomes
--- PASS: TestReadDBHomes (0.02s)
--- PASS: TestDatabaseDBHomesTestSuite (0.02s)
=== RUN   TestDatabaseDBNodeTestSuite
=== RUN   TestReadDBNode
--- PASS: TestReadDBNode (0.02s)
--- PASS: TestDatabaseDBNodeTestSuite (0.02s)
=== RUN   TestDatabaseDBNodesTestSuite
=== RUN   TestReadDBNodes
--- PASS: TestReadDBNodes (0.02s)
--- PASS: TestDatabaseDBNodesTestSuite (0.02s)
=== RUN   TestDBSystemDatasourceTestSuite
=== RUN   TestReadDBSystems
--- PASS: TestReadDBSystems (0.02s)
--- PASS: TestDBSystemDatasourceTestSuite (0.02s)
=== RUN   TestDatabaseDBSystemShapeTestSuite
=== RUN   TestReadDBSystemShapes
--- PASS: TestReadDBSystemShapes (0.02s)
--- PASS: TestDatabaseDBSystemShapeTestSuite (0.02s)
=== RUN   TestDatabaseDBSystemTestSuite
=== RUN   TestCreateDBSystem
--- FAIL: TestCreateDBSystem (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_database_db_system.t: 1 error occurred:

		* baremetal_database_db_system.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestTerminateDBSystem
--- FAIL: TestTerminateDBSystem (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_database_db_system.t: 1 error occurred:

		* baremetal_database_db_system.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
--- FAIL: TestDatabaseDBSystemTestSuite (0.04s)
=== RUN   TestDatabaseDBVersionTestSuite
=== RUN   TestReadDBVersions
--- PASS: TestReadDBVersions (0.02s)
--- PASS: TestDatabaseDBVersionTestSuite (0.02s)
=== RUN   TestDatasourceDatabaseSupportedOperationTestSuite
=== RUN   TestDatabaseListSupportedOperations
--- PASS: TestDatabaseListSupportedOperations (0.02s)
--- PASS: TestDatasourceDatabaseSupportedOperationTestSuite (0.02s)
=== RUN   TestResourceIdentityAPIKeysTestSuite
=== RUN   TestReadAPIKeys
--- PASS: TestReadAPIKeys (0.02s)
--- PASS: TestResourceIdentityAPIKeysTestSuite (0.02s)
=== RUN   TestResourceIdentityAPIKeyTestSuite
=== RUN   TestCreateAPIKey
--- FAIL: TestCreateAPIKey (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_api_key.t: 1 error occurred:

		* baremetal_identity_api_key.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_identity_api_key.t (destroy): 1 error occurred:

		* baremetal_identity_api_key.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_identity_api_key.t:
		  ID = key_id
		  fingerprint = fingerprint
		  key_value = 1
		  state = ACTIVE
		  time_created = 2017-04-02 17:55:56.993590637 -0700 PDT
		  user_id = user_id
=== RUN   TestDeleteAPIKey
--- FAIL: TestDeleteAPIKey (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_api_key.t: 1 error occurred:

		* baremetal_identity_api_key.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_identity_api_key.t (destroy): 1 error occurred:

		* baremetal_identity_api_key.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax

		State: baremetal_identity_api_key.t:
		  ID = key_id
		  fingerprint = fingerprint
		  key_value = 1
		  state = ACTIVE
		  time_created = 2017-04-02 17:55:57.011351931 -0700 PDT
		  user_id = user_id
--- FAIL: TestResourceIdentityAPIKeyTestSuite (0.04s)
=== RUN   TestResourceIdentityAvailabilityDomainsTestSuite
=== RUN   TestReadAPIKeys
--- PASS: TestReadAPIKeys (0.02s)
--- PASS: TestResourceIdentityAvailabilityDomainsTestSuite (0.02s)
=== RUN   TestResourceIdentityCompartmentsTestSuite
=== RUN   TestReadCompartments
--- PASS: TestReadCompartments (0.02s)
--- PASS: TestResourceIdentityCompartmentsTestSuite (0.02s)
=== RUN   TestResourceIdentityCompartmentTestSuite
=== RUN   TestCreateResourceIdentityCompartment
--- FAIL: TestCreateResourceIdentityCompartment (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_compartment.t: 1 error occurred:

		* baremetal_identity_compartment.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestCreateResourceIdentityCompartmentPolling
--- FAIL: TestCreateResourceIdentityCompartmentPolling (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_compartment.t: 1 error occurred:

		* baremetal_identity_compartment.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestFailedUpdateResourceIdentityCompartmentDescription
--- FAIL: TestFailedUpdateResourceIdentityCompartmentDescription (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_compartment.t: 1 error occurred:

		* baremetal_identity_compartment.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestUpdateResourceIdentityCompartmentDescription
--- FAIL: TestUpdateResourceIdentityCompartmentDescription (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_compartment.t: 1 error occurred:

		* baremetal_identity_compartment.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
--- FAIL: TestResourceIdentityCompartmentTestSuite (0.07s)
=== RUN   TestResourceIdentityGroupsTestSuite
=== RUN   TestReadGroups
--- PASS: TestReadGroups (0.02s)
--- PASS: TestResourceIdentityGroupsTestSuite (0.02s)
=== RUN   TestResourceIdentityGroupTestSuite
=== RUN   TestCreateResourceIdentityGroup
--- FAIL: TestCreateResourceIdentityGroup (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_group.t: 1 error occurred:

		* baremetal_identity_group.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestCreateResourceIdentityGroupPolling
--- FAIL: TestCreateResourceIdentityGroupPolling (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_group.t: 1 error occurred:

		* baremetal_identity_group.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestDeleteResourceIdentityGroup
--- FAIL: TestDeleteResourceIdentityGroup (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_group.t: 1 error occurred:

		* baremetal_identity_group.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestFailedUpdateResourceIdentityGroupDescription
--- FAIL: TestFailedUpdateResourceIdentityGroupDescription (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_group.t: 1 error occurred:

		* baremetal_identity_group.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestUpdateResourceIdentityGroupDescription
--- FAIL: TestUpdateResourceIdentityGroupDescription (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_group.t: 1 error occurred:

		* baremetal_identity_group.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestUpdateResourceIdentityGroupNameShouldCreateNew
--- FAIL: TestUpdateResourceIdentityGroupNameShouldCreateNew (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_group.t: 1 error occurred:

		* baremetal_identity_group.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
--- FAIL: TestResourceIdentityGroupTestSuite (0.11s)
=== RUN   TestResourceIdentityPoliciesTestSuite
=== RUN   TestListResourceIdentityPolicies
--- PASS: TestListResourceIdentityPolicies (0.02s)
--- PASS: TestResourceIdentityPoliciesTestSuite (0.02s)
=== RUN   TestResourceIdentityPolicyTestSuite
=== RUN   TestCreateResourceIdentityPolicy
--- FAIL: TestCreateResourceIdentityPolicy (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_policy.p: 1 error occurred:

		* baremetal_identity_policy.p: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestDeleteFailureResourceIdentityPolicy
--- FAIL: TestDeleteFailureResourceIdentityPolicy (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_policy.p: 1 error occurred:

		* baremetal_identity_policy.p: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
	testing.go:329: Error destroying resource! WARNING: Dangling resources
		may exist. The full state and error is shown below.

		Error: Error applying: 1 error occurred:

		* baremetal_identity_policy.p (destroy): 1 error occurred:

		* baremetal_identity_policy.p: XXX

		State: baremetal_identity_policy.p:
		  ID = 123
		  compartment_id = 7
		  description = desc
		  name = pol
		  state = ACTIVE
		  statements.# = 2
		  statements.0 = statementX
		  statements.1 = statementY
		  time_created = 2006-01-02 00:00:00 +0000 UTC
=== RUN   TestDeleteResourceIdentityPolicy
--- FAIL: TestDeleteResourceIdentityPolicy (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_policy.p: 1 error occurred:

		* baremetal_identity_policy.p: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestFailedUpdateResourceIdentityPolicy
--- FAIL: TestFailedUpdateResourceIdentityPolicy (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_policy.p: 1 error occurred:

		* baremetal_identity_policy.p: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestUpdateResourceIdentityPolicy
--- FAIL: TestUpdateResourceIdentityPolicy (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_policy.p: 1 error occurred:

		* baremetal_identity_policy.p: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestUpdateResourceIdentityPolicyNameShouldCreateNew
--- FAIL: TestUpdateResourceIdentityPolicyNameShouldCreateNew (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_policy.p: 1 error occurred:

		* baremetal_identity_policy.p: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
--- FAIL: TestResourceIdentityPolicyTestSuite (0.12s)
=== RUN   TestResourceIdentitySwiftPasswordsTestSuite
=== RUN   TestListResourceIdentitySwiftPasswords
--- PASS: TestListResourceIdentitySwiftPasswords (0.03s)
--- PASS: TestResourceIdentitySwiftPasswordsTestSuite (0.03s)
=== RUN   TestResourceIdentitySwiftPasswordTestSuite
=== RUN   TestCreateSwiftPassword
--- PASS: TestCreateSwiftPassword (0.02s)
=== RUN   TestUpdateDescriptionUpdatesSwiftPassword
--- PASS: TestUpdateDescriptionUpdatesSwiftPassword (0.04s)
--- PASS: TestResourceIdentitySwiftPasswordTestSuite (0.06s)
=== RUN   TestResourceIdentityUIPasswordTestSuite
=== RUN   TestCreateUIPassword
--- PASS: TestCreateUIPassword (0.02s)
=== RUN   TestUpdateVersionForcesNewUIPassword
--- PASS: TestUpdateVersionForcesNewUIPassword (0.03s)
--- PASS: TestResourceIdentityUIPasswordTestSuite (0.05s)
=== RUN   TestResourceIdentityUsersTestSuite
=== RUN   TestReadUsers
--- PASS: TestReadUsers (0.02s)
--- PASS: TestResourceIdentityUsersTestSuite (0.02s)
=== RUN   TestResourceIdentityUserGroupMembershipsTestSuite
=== RUN   TestCreateUserGroupMemberships

    resource "baremetal_identity_user" "u" {
	name = "user_name"
	description = "user desc"
    }
    resource "baremetal_identity_group" "g" {
	name = "group_name"
	description = "group desc"
    }
    resource "baremetal_identity_user_group_membership" "ug_membership" {
    	compartment_id = "cid"
	user_id = "${baremetal_identity_user.u.id}"
	group_id = "${baremetal_identity_group.g.id}"
    }


provider "baremetal" {
	tenancy_ocid = "ocid.tenancy.aaaa"
	user_ocid = "ocid.user.bbbbb"
	fingerprint = "xxxxxxxxxx"
	private_key_path = "/home/foo/private_key.pem"
	private_key_password = "password"
}


--- FAIL: TestCreateUserGroupMemberships (0.02s)
	testing.go:265: Step 0 error: Error applying: 2 errors occurred:

		* baremetal_identity_group.g: 1 error occurred:

		* baremetal_identity_group.g: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
		* baremetal_identity_user.u: 1 error occurred:

		* baremetal_identity_user.u: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestGetUserGroupMembershipsByGroup
--- FAIL: TestGetUserGroupMembershipsByGroup (0.03s)
	testing.go:265: Step 0 error: Error applying: 2 errors occurred:

		* baremetal_identity_group.g: 1 error occurred:

		* baremetal_identity_group.g: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
		* baremetal_identity_user.u: 1 error occurred:

		* baremetal_identity_user.u: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestGetUserGroupMembershipsByUser
--- FAIL: TestGetUserGroupMembershipsByUser (0.03s)
	testing.go:265: Step 0 error: Error applying: 2 errors occurred:

		* baremetal_identity_group.g: 1 error occurred:

		* baremetal_identity_group.g: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
		* baremetal_identity_user.u: 1 error occurred:

		* baremetal_identity_user.u: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestGetUserGroupMembershipsByUserAndGroup
--- FAIL: TestGetUserGroupMembershipsByUserAndGroup (0.03s)
	testing.go:265: Step 0 error: Error applying: 2 errors occurred:

		* baremetal_identity_user.u: 1 error occurred:

		* baremetal_identity_user.u: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
		* baremetal_identity_group.g: 1 error occurred:

		* baremetal_identity_group.g: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
--- FAIL: TestResourceIdentityUserGroupMembershipsTestSuite (0.10s)
=== RUN   TestResourceIdentityUserTestSuite
=== RUN   TestCreateResourceIdentityUser
--- FAIL: TestCreateResourceIdentityUser (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_user.t: 1 error occurred:

		* baremetal_identity_user.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestCreateResourceIdentityUserPolling
--- FAIL: TestCreateResourceIdentityUserPolling (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_user.t: 1 error occurred:

		* baremetal_identity_user.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestDeleteResourceIdentityUser
--- FAIL: TestDeleteResourceIdentityUser (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_user.t: 1 error occurred:

		* baremetal_identity_user.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestFailedUpdateResourceIdentityUserDescription
--- FAIL: TestFailedUpdateResourceIdentityUserDescription (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_user.t: 1 error occurred:

		* baremetal_identity_user.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestUpdateResourceIdentityUserDescription
--- FAIL: TestUpdateResourceIdentityUserDescription (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_user.t: 1 error occurred:

		* baremetal_identity_user.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
=== RUN   TestUpdateResourceIdentityUserNameShouldCreateNew
--- FAIL: TestUpdateResourceIdentityUserNameShouldCreateNew (0.02s)
	testing.go:265: Step 0 error: Error applying: 1 error occurred:

		* baremetal_identity_user.t: 1 error occurred:

		* baremetal_identity_user.t: timeout_minutes: strconv.Atoi: parsing "": invalid syntax
--- FAIL: TestResourceIdentityUserTestSuite (0.10s)
=== RUN   TestResourceobjectstorageBucketTestSuite
=== RUN   TestCreateResourceObjectstorageBucket
--- PASS: TestCreateResourceObjectstorageBucket (0.02s)
=== RUN   TestDeleteResourceObjectstorageBucket
--- PASS: TestDeleteResourceObjectstorageBucket (0.03s)
=== RUN   TestUpdateResourceObjectstorageBucket
--- PASS: TestUpdateResourceObjectstorageBucket (0.03s)
--- PASS: TestResourceobjectstorageBucketTestSuite (0.08s)
=== RUN   TestObjectstorageBucketSummaryTestSuite
=== RUN   TestReadBucketSummaries
--- PASS: TestReadBucketSummaries (0.02s)
--- PASS: TestObjectstorageBucketSummaryTestSuite (0.02s)
=== RUN   TestDatasourceobjectstorageNamespaceTestSuite
=== RUN   TestCreateResourceObjectstorageObject
--- PASS: TestCreateResourceObjectstorageObject (0.02s)
=== RUN   TestDeleteResourceObjectstorageObject
--- PASS: TestDeleteResourceObjectstorageObject (0.03s)
=== RUN   TestUpdateResourceObjectstorageObject
--- PASS: TestUpdateResourceObjectstorageObject (0.03s)
--- PASS: TestDatasourceobjectstorageNamespaceTestSuite (0.08s)
=== RUN   TestDatasourceobjectstorageObjectTestSuite
=== RUN   TestCreateResourceObjectstorageObject
--- PASS: TestCreateResourceObjectstorageObject (0.02s)
=== RUN   TestDeleteResourceObjectstorageObject
--- PASS: TestDeleteResourceObjectstorageObject (0.03s)
=== RUN   TestUpdateResourceObjectstorageObject
--- PASS: TestUpdateResourceObjectstorageObject (0.03s)
--- PASS: TestDatasourceobjectstorageObjectTestSuite (0.09s)
=== RUN   TestDatasourceobjectstorageObjectHeadTestSuite
=== RUN   TestObjectstorageHeadObject
--- PASS: TestObjectstorageHeadObject (0.02s)
--- PASS: TestDatasourceobjectstorageObjectHeadTestSuite (0.02s)
=== RUN   TestResourceobjectstorageObjectTestSuite
=== RUN   TestCreateResourceObjectstorageObject
--- PASS: TestCreateResourceObjectstorageObject (0.02s)
=== RUN   TestDeleteResourceObjectstorageObject
--- PASS: TestDeleteResourceObjectstorageObject (0.03s)
=== RUN   TestUpdateResourceObjectstorageObject
--- PASS: TestUpdateResourceObjectstorageObject (0.03s)
--- PASS: TestResourceobjectstorageObjectTestSuite (0.08s)
=== RUN   TestProvider
--- PASS: TestProvider (0.00s)
=== RUN   TestProviderConfig
--- PASS: TestProviderConfig (0.00s)
FAIL
exit status 1
FAIL	github.com/oracle/terraform-provider-baremetal	63.997s
make: *** [test_acceptance] Error 1

from terraform-provider-oci.

craigcarl-oracle avatar craigcarl-oracle commented on August 15, 2024

@mikejihbe @josephholsten

from terraform-provider-oci.

mikejihbe avatar mikejihbe commented on August 15, 2024

from terraform-provider-oci.

codycushing avatar codycushing commented on August 15, 2024

No issue building now

from terraform-provider-oci.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.