From 9257fe3d98860eba8e274344fc3bea1c4092fcb8 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 27 Dec 2012 19:28:05 -1000 Subject: [PATCH] Environment#active_machines This returns a list of active machines for the environment. An active machine is a machine that at one point was created by Vagrant. --- lib/vagrant/environment.rb | 45 +++++++++++++++++++++++++++ test/unit/vagrant/environment_test.rb | 24 ++++++++++++++ 2 files changed, 69 insertions(+) diff --git a/lib/vagrant/environment.rb b/lib/vagrant/environment.rb index cee3c9e5e..2c70db3eb 100644 --- a/lib/vagrant/environment.rb +++ b/lib/vagrant/environment.rb @@ -140,6 +140,51 @@ module Vagrant # Helpers #--------------------------------------------------------------- + # Returns a list of machines that this environment is currently + # managing that physically have been created. + # + # An "active" machine is a machine that Vagrant manages that has + # been created. The machine itself may be in any state such as running, + # suspended, etc. but if a machine is "active" then it exists. + # + # Note that the machines in this array may no longer be present in + # the Vagrantfile of this environment. In this case the machine can + # be considered an "orphan." Determining which machines are orphan + # and which aren't is not currently a supported feature, but will + # be in a future version. + # + # @return [Array] + def active_machines + machine_folder = @local_data_path.join("machines") + + # If the machine folder is not a directory then we just return + # an empty array since no active machines exist. + return [] if !machine_folder.directory? + + # Traverse the machines folder accumulate a result + result = [] + + machine_folder.children(true).each do |name_folder| + # If this isn't a directory then it isn't a machine + next if !name_folder.directory? + + name = name_folder.basename.to_s + name_folder.children(true).each do |provider_folder| + # If this isn't a directory then it isn't a provider + next if !provider_folder.directory? + + # If this machine doesn't have an ID, then ignore + next if !provider_folder.join("id").file? + + provider = provider_folder.basename.to_s.to_sym + result << [name, provider] + end + end + + # Return the results + result + end + # This returns the provider name for the default provider for this # environment. The provider returned is currently hardcoded to "virtualbox" # but one day should be a detected valid, best-case provider for this diff --git a/test/unit/vagrant/environment_test.rb b/test/unit/vagrant/environment_test.rb index 78f3a5dbb..3ab18b4f1 100644 --- a/test/unit/vagrant/environment_test.rb +++ b/test/unit/vagrant/environment_test.rb @@ -23,6 +23,30 @@ describe Vagrant::Environment do let(:instance) { env.create_vagrant_env } + describe "active machines" do + it "should be empty if the machines folder doesn't exist" do + folder = instance.local_data_path.join("machines") + folder.should_not be_exist + + instance.active_machines.should be_empty + end + + it "should return the name and provider of active machines" do + machines = instance.local_data_path.join("machines") + + # Valid machine, with "foo" and virtualbox + machine_foo = machines.join("foo/virtualbox") + machine_foo.mkpath + machine_foo.join("id").open("w+") { |f| f.write("") } + + # Invalid machine (no ID) + machine_bar = machines.join("bar/virtualbox") + machine_bar.mkpath + + instance.active_machines.should == [["foo", :virtualbox]] + end + end + describe "current working directory" do it "is the cwd by default" do temp_dir = Tempdir.new.path