Context("when disk cid can be resolved to a device path from infrastructure settings", func() {
				BeforeEach(func() {
					settingsService.Settings.Disks.Persistent = map[string]string{
						"fake-disk-cid": "fake-device-path",
					}
				})

				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.MountPersistentDiskDevicePath).To(Equal("fake-device-path"))
							Expect(platform.MountPersistentDiskMountPoint).To(Equal("/fake-base-dir/store"))
						})
					})

					Context("when mounting fails", func() {
						It("returns error after trying to mount store directory", func() {