当前位置: 首页>>代码示例>>Golang>>正文


Golang FakeSoftLayerClient.DoRawHttpRequestResponse方法代码示例

本文整理汇总了Golang中github.com/maximilien/softlayer-go/client/fakes.FakeSoftLayerClient.DoRawHttpRequestResponse方法的典型用法代码示例。如果您正苦于以下问题:Golang FakeSoftLayerClient.DoRawHttpRequestResponse方法的具体用法?Golang FakeSoftLayerClient.DoRawHttpRequestResponse怎么用?Golang FakeSoftLayerClient.DoRawHttpRequestResponse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/maximilien/softlayer-go/client/fakes.FakeSoftLayerClient的用法示例。


在下文中一共展示了FakeSoftLayerClient.DoRawHttpRequestResponse方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1:

			edited, err := virtualGuestService.EditObject(virtualGuest.Id, virtualGuest)
			Expect(err).ToNot(HaveOccurred())
			Expect(edited).To(BeTrue())
		})
	})

	Context("#ReloadOperatingSystem", func() {
		BeforeEach(func() {
			reload_OS_Config = datatypes.Image_Template_Config{
				ImageTemplateId: "5b7bc66a-72c6-447a-94a1-967803fcd76b",
			}
			virtualGuest.Id = 1234567
		})

		It("sucessfully reload OS on the virtual guest instance", func() {
			fakeClient.DoRawHttpRequestResponse = []byte(`"1"`)

			err = virtualGuestService.ReloadOperatingSystem(virtualGuest.Id, reload_OS_Config)
			Expect(err).ToNot(HaveOccurred())
		})

		It("fails to reload OS on the virtual guest instance", func() {
			fakeClient.DoRawHttpRequestResponse = []byte(`"99"`)

			err = virtualGuestService.ReloadOperatingSystem(virtualGuest.Id, reload_OS_Config)
			Expect(err).To(HaveOccurred())
		})
	})

	Context("#DeleteObject", func() {
		BeforeEach(func() {
开发者ID:cheyang,项目名称:softlayer-go,代码行数:31,代码来源:softlayer_virtual_guest_test.go

示例2:

				DedicatedAccountHostOnlyFlag: false,
				Domain: "softlayer.com",
				FullyQualifiedDomainName: "fake.softlayer.com",
				Hostname:                 "fake-hostname",
				Id:                       1234567,
				MaxCpu:                   2,
				MaxCpuUnits:              "CORE",
				MaxMemory:                1024,
				StartCpus:                2,
				StatusId:                 1001,
				Uuid:                     "fake-uuid",
				GlobalIdentifier:         "fake-globalIdentifier",
				PrimaryBackendIpAddress:  "fake-primary-backend-ip",
				PrimaryIpAddress:         "fake-primary-ip",
			}
			fakeClient.DoRawHttpRequestResponse = []byte("true")
			resp, err := networkStorageService.AttachIscsiVolume(virtualGuest, 123)
			Expect(err).ToNot(HaveOccurred())
			Expect(resp).To(Equal("true"))
		})
	})

	Context("#DetachIscsiVolume", func() {
		It("Revoke access to storage from virtual guest", func() {
			virtualGuest := datatypes.SoftLayer_Virtual_Guest{
				AccountId:                    123456,
				DedicatedAccountHostOnlyFlag: false,
				Domain: "softlayer.com",
				FullyQualifiedDomainName: "fake.softlayer.com",
				Hostname:                 "fake-hostname",
				Id:                       1234567,
开发者ID:ardnaxelarak,项目名称:softlayer-go,代码行数:31,代码来源:softlayer_network_storage_test.go

示例3:

	Describe("#Delete", func() {
		BeforeEach(func() {
			fixturesFileNames := []string{"SoftLayer_Virtual_Guest_Block_Device_Template_Group_Service_Delete.json",
				"SoftLayer_Virtual_Guest_Service_getActiveTransaction.json",
				"SoftLayer_Virtual_Guest_Service_getActiveTransactions_None.json",
				"SoftLayer_Virtual_Guest_Block_Device_Template_Group_Service_GetObject_None.json"}

			testhelpers.SetTestFixturesForFakeSoftLayerClient(softLayerClient, fixturesFileNames)
		})

		Context("when stemcell exists", func() {
			It("deletes the stemcell in collection directory that contains unpacked stemcell", func() {
				err := stemcell.Delete()
				Expect(err).ToNot(HaveOccurred())
			})
		})

		Context("when stemcell does not exist", func() {
			BeforeEach(func() {
				softLayerClient.DoRawHttpRequestResponse = []byte("false")
			})

			It("returns error if deleting stemcell does not exist", func() {
				err := stemcell.Delete()
				Expect(err).To(HaveOccurred())
			})
		})
	})
})
开发者ID:zhang-hua,项目名称:bosh-dummy-cpi,代码行数:29,代码来源:softlayer_stemcell_test.go


注:本文中的github.com/maximilien/softlayer-go/client/fakes.FakeSoftLayerClient.DoRawHttpRequestResponse方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。