It("fails to delete the SoftLayer_Virtual_Guest instance", func() {
			fakeClient.DoRawHttpRequestResponse = []byte("false")
			deleted, err := virtualGuestService.DeleteObject(virtualGuest.Id)
			Expect(err).To(HaveOccurred())
			Expect(deleted).To(BeFalse())
		})
	})

	Context("#AttachEphemeralDisk", func() {
		BeforeEach(func() {
			fakeClient.DoRawHttpRequestResponse, err = testhelpers.ReadJsonTestFixtures("services", "SoftLayer_Product_Order_placeOrder.json")
			Expect(err).ToNot(HaveOccurred())
		})

		It("reports error when providing a wrong disk size", func() {
			_, err := virtualGuestService.AttachEphemeralDisk(123, -1)
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("Ephemeral disk size can not be negative: -1"))
		})

		It("can attach a local disk without error", func() {
			receipt, err := virtualGuestService.AttachEphemeralDisk(123, 25)
			Expect(err).ToNot(HaveOccurred())
			Expect(receipt.OrderId).NotTo(Equal(0))
		})

	})

	Context("#UpgradeObject", func() {
		BeforeEach(func() {
			fakeClient.DoRawHttpRequestResponse, err = testhelpers.ReadJsonTestFixtures("services", "SoftLayer_Product_Order_placeOrder.json")
		It("fails to delete the SoftLayer_Virtual_Guest instance", func() {
			fakeClient.DoRawHttpRequestResponse = []byte("false")
			deleted, err := virtualGuestService.DeleteObject(virtualGuest.Id)
			Expect(err).To(HaveOccurred())
			Expect(deleted).To(BeFalse())
		})
	})

	Context("#AttachEphemeralDisk", func() {
		BeforeEach(func() {
			fakeClient.DoRawHttpRequestResponse, err = common.ReadJsonTestFixtures("services", "SoftLayer_Product_Order_placeOrder.json")
			Expect(err).ToNot(HaveOccurred())
		})

		It("reports error when providing a wrong disk size", func() {
			err := virtualGuestService.AttachEphemeralDisk(123, -1)
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("Ephemeral disk size can not be negative: -1"))
		})

		It("can attach a local disk without error", func() {
			err := virtualGuestService.AttachEphemeralDisk(123, 25)
			Expect(err).ToNot(HaveOccurred())
		})

		It("reports error when providing a disk size that exceeds the biggest capacity disk SL can provide", func() {
			fakeClient.DoRawHttpRequestResponse, err = common.ReadJsonTestFixtures("services", "SoftLayer_Virtual_Guest_Service_getUpgradeItemPrices.json")
			err := virtualGuestService.AttachEphemeralDisk(123, 26)
			Expect(err).To(HaveOccurred())
			Expect(err.Error()).To(Equal("No proper local disk for size 26"))
		})