當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。