File: test_groupadd.rb

package info (click to toggle)
ruby-activeldap 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,588 kB
  • sloc: ruby: 18,143; sh: 12; makefile: 5
file content (50 lines) | stat: -rw-r--r-- 1,225 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
require 'al-test-utils'

class TestGroupadd < Test::Unit::TestCase
  include AlTestUtils

  def setup
    super
    @command = File.join(@examples_dir, "groupadd")
  end

  priority :must

  priority :normal
  def test_exist_group
    make_temporary_group do |group|
      assert(@group_class.exists?(group.id))
      assert_equal([false, "Group #{group.id} already exists.\n"],
                   run_command(group.id))
      assert(@group_class.exists?(group.id))
    end
  end

  def test_add_group
    ensure_delete_group("test-group") do |gid|
      assert_groupadd_successfully(gid)
    end
  end

  private
  def assert_groupadd_successfully(name, *args, &block)
    _wrap_assertion do
      assert(!@group_class.exists?(name))
      args.concat([name])
      assert_equal([true, ""], run_command(*args, &block))
      assert(@group_class.exists?(name))

      group = @group_class.find(name)
      assert_equal(name, group.id)
    end
  end

  def assert_groupadd_failed(name, message, *args, &block)
    _wrap_assertion do
      assert(!@group_class.exists?(name))
      args.concat([name])
      assert_equal([false, message], run_command(*args, &block))
      assert(!@group_class.exists?(name))
    end
  end
end