Skip to content

Commit

Permalink
Merge pull request #449 from Parallels/unit-test-synced-folder
Browse files Browse the repository at this point in the history
Update unit test for synced folders
  • Loading branch information
legal90 committed May 22, 2023
2 parents e144dfd + 9e9f3d8 commit 22fc1b2
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
43 changes: 43 additions & 0 deletions test/unit/synced_folder_macvm_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
require 'vagrant'
require_relative 'base'

require VagrantPlugins::Parallels.source_root.join('lib/vagrant-parallels/config')
require VagrantPlugins::Parallels.source_root.join('lib/vagrant-parallels/synced_folder_macvm')

describe VagrantPlugins::Parallels::SyncedFolderMacVM do
let(:machine) do
double('machine').tap do |m|
allow(m).to receive_messages(provider_name: :parallels)
allow(VagrantPlugins::Parallels::Util::Common).to receive(:is_macvm).with(m).and_return(true)
end
end

subject { described_class.new }

describe 'usable' do
it 'should be with parallels provider' do
allow(machine).to receive_messages(provider_name: :parallels)
expect(subject).to be_usable(machine)
end

it 'should not be with another provider' do
allow(machine).to receive_messages(provider_name: :virtualbox)
expect(subject).not_to be_usable(machine)
end

it 'should be with macvm guest' do
allow(VagrantPlugins::Parallels::Util::Common).to receive(:is_macvm).with(machine).and_return(true)
expect(subject).to be_usable(machine)
end
end

describe 'prepare' do
let(:driver) { double('driver') }

before do
allow(machine).to receive_messages(driver: driver)
end

it 'should share the folders'
end
end
6 changes: 6 additions & 0 deletions test/unit/synced_folder_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
double('machine').tap do |m|
allow(m).to receive_messages(provider_config: VagrantPlugins::Parallels::Config.new)
allow(m).to receive_messages(provider_name: :parallels)
allow(VagrantPlugins::Parallels::Util::Common).to receive(:is_macvm).with(m).and_return(false)
end
end

Expand All @@ -29,6 +30,11 @@
expect(subject).not_to be_usable(machine)
end

it 'should not be with macvm guest' do
allow(VagrantPlugins::Parallels::Util::Common).to receive(:is_macvm).with(machine).and_return(true)
expect(subject).not_to be_usable(machine)
end

it 'should not be usable if not functional psf' do
machine.provider_config.functional_psf = false
expect(subject).to_not be_usable(machine)
Expand Down

0 comments on commit 22fc1b2

Please sign in to comment.