Sha256: 7f88ebf5c82b7c63fd1edf6931e66ec47fbd199eeb654625d1b50acce2ad1f79

Contents?: true

Size: 1.14 KB

Versions: 24

Compression:

Stored size: 1.14 KB

Contents

require_relative "../../../../base"

require_relative "../../../../../../plugins/hosts/darwin/cap/rdp"

describe VagrantPlugins::HostDarwin::Cap::RDP do
  let(:rdp_info) do
    {
      host: "host",
      port: "port",
      username: "username",
    }
  end

  it "includes the default options" do
    path = described_class.generate_config_file(rdp_info)
    result = File.readlines(path).map(&:chomp)
    expect(result).to include("drivestoredirect:s:*")
    expect(result).to include("full address:s:host:port")
    expect(result).to include("prompt for credentials:i:1")
    expect(result).to include("username:s:username")
  end

  it "includes extra RDP arguments" do
    rdp_info.merge!(extra_args: ["screen mode id:i:0"])
    path = described_class.generate_config_file(rdp_info)
    result = File.readlines(path).map(&:chomp)
    expect(result).to include("screen mode id:i:0")
  end

  it "opens the RDP file" do
    env = double(:env)
    allow(described_class).to receive(:generate_config_file).and_return("/path")
    expect(Vagrant::Util::Subprocess).to receive(:execute).with("open", "/path")
    described_class.rdp_client(env, rdp_info)
  end
end

Version data entries

24 entries across 20 versions & 5 rubygems

Version Path
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-packet-0.1.2 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-04f7215b5e3f/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/bundler/gems/vagrant-04f7215b5e3f/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/bundler/gems/vagrant-04f7215b5e3f/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-aws-detiber-0.7.2.pre.4 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-aws-detiber-0.7.2.pre.3 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-aws-detiber-0.7.2.pre.2 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-419afb4dcffe/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-unbundled-2.0.2.0 test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-unbundled-2.0.1.0 test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-aws-mkubenka-0.7.2.pre.22 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-f3fdbf414272/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-aws-mkubenka-0.7.2.pre.16 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-1ee58c40e3f5/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-unbundled-2.0.0.1 test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-unbundled-1.9.8.1 test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-unbundled-1.9.7.1 test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-aws-mkubenka-0.7.2.pre.14 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/hosts/darwin/cap/rdp_test.rb
vagrant-aws-mkubenka-0.7.2.pre.11 vendor/bundle/ruby/2.3.0/bundler/gems/vagrant-5333e60e2d38/test/unit/plugins/hosts/darwin/cap/rdp_test.rb