Esempio n. 1
0
						"fake-disk-cid": map[string]interface{}{
							"path":      "fake-device-path",
							"volume_id": "fake-volume-id",
						},
					}
				})

				It("checks if store directory is already mounted", func() {
					_, err := action.Run("fake-disk-cid")
					Expect(err).NotTo(HaveOccurred())
					Expect(platform.IsMountPointPath).To(Equal("/fake-base-dir/store"))
				})

				Context("when store directory is not mounted", func() {
					BeforeEach(func() {
						platform.IsMountPointResult = false
					})

					Context("when mounting succeeds", func() {
						It("returns without an error after mounting store directory", func() {
							result, err := action.Run("fake-disk-cid")
							Expect(err).NotTo(HaveOccurred())
							Expect(result).To(Equal(map[string]string{}))

							Expect(platform.MountPersistentDiskSettings).To(Equal(boshsettings.DiskSettings{
								ID:       "fake-disk-cid",
								VolumeID: "fake-volume-id",
								Path:     "fake-device-path",
							}))
							Expect(platform.MountPersistentDiskMountPoint).To(Equal("/fake-base-dir/store"))
						})