Пример #1
0
			It("returns the error", func() {
				err := container.LimitDisk(garden.DiskLimits{})
				Ω(err).Should(Equal(disaster))
			})
		})
	})

	Describe("LimitMemory", func() {
		It("sends a limit bandwidth request", func() {
			err := container.LimitMemory(garden.MemoryLimits{
				LimitInBytes: 1,
			})
			Ω(err).ShouldNot(HaveOccurred())

			handle, limits := fakeConnection.LimitMemoryArgsForCall(0)
			Ω(handle).Should(Equal("some-handle"))
			Ω(limits).Should(Equal(garden.MemoryLimits{LimitInBytes: 1}))
		})

		Context("when the request fails", func() {
			disaster := errors.New("oh no!")

			BeforeEach(func() {
				fakeConnection.LimitMemoryReturns(garden.MemoryLimits{}, disaster)
			})

			It("returns the error", func() {
				err := container.LimitMemory(garden.MemoryLimits{})
				Ω(err).Should(Equal(disaster))
			})
Пример #2
0
		var gotLimits garden.MemoryLimits

		itRetries(func() error {
			var err error
			gotLimits, err = conn.LimitMemory(handle, limits)
			return err
		}, func(err error) {
			innerConnection.LimitMemoryReturns(limits, err)
		}, func() int {
			return innerConnection.LimitMemoryCallCount()
		}, func() {
			It("calls through to garden", func() {
				Ω(innerConnection.LimitMemoryCallCount()).Should(Equal(1))

				calledHandle, calledLimits := innerConnection.LimitMemoryArgsForCall(0)
				Ω(calledHandle).Should(Equal(handle))
				Ω(calledLimits).Should(Equal(limits))
			})

			It("returns the limits", func() {
				Ω(gotLimits).Should(Equal(limits))
			})
		})
	})

	Describe("Create", func() {
		spec := garden.ContainerSpec{
			RootFSPath: "/dev/mouse",
		}