Sha256: 44d6bdddaa67ff3c5236faf879ca44c14979b7589445bf8c1f2dd9b59fcd5e7a

Contents?: true

Size: 650 Bytes

Versions: 5

Compression:

Stored size: 650 Bytes

Contents

require 'asl-test-utils'

class AslUserShowTest < Test::Unit::TestCase
  include AslTestUtils

  def setup
    super
    @command = File.join(@bin_dir, "asl-usershow")
  end

  def test_exist_user
    make_dummy_user do |user, password|
      user.class.setup_connection("reference")
      begin
        user = user.class.find(user.uid)
        assert_equal([true, user.to_ldif, ""], run_command(user.uid))
      ensure
        user.class.setup_connection("update")
      end
    end
  end

  def test_not_exist_user
    assert_equal([false, "", _("user doesn't exist: %s") % 'not-exist' + "\n"],
                 run_command("not-exist"))
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
activesambaldap-0.1.0 test/test_asl_usershow.rb
activesambaldap-0.0.9 test/test_asl_usershow.rb
activesambaldap-0.0.8 test/test_asl_usershow.rb
ActiveSambaLdap-0.0.7 test/test_asl_usershow.rb
activesambaldap-0.0.7 test/test_asl_usershow.rb