diff options
author | elijah <elijah@riseup.net> | 2016-08-29 16:35:14 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2016-09-01 10:13:31 -0700 |
commit | 07c0e60e6bdc5b8bfe1f42f76dae9f0a79e7abb0 (patch) | |
tree | 9f79f8fbb207896dcfe38f24831d9b2b857199a4 /tests/white-box/dummy.rb | |
parent | d5bac5850e4a895da5f9cfacb641fab15de1cf7b (diff) |
moved infrastructure tests run by `leap run` to tests/server-tests
Diffstat (limited to 'tests/white-box/dummy.rb')
-rw-r--r-- | tests/white-box/dummy.rb | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/tests/white-box/dummy.rb b/tests/white-box/dummy.rb deleted file mode 100644 index a3e8ad68..00000000 --- a/tests/white-box/dummy.rb +++ /dev/null @@ -1,71 +0,0 @@ -# only run in the dummy case where there is no hiera.yaml file. -raise SkipTest unless $node["dummy"] - -class Robot - def can_shoot_lasers? - "OHAI!" - end - - def can_fly? - "YES!" - end -end - -class TestDummy < LeapTest - def setup - @robot = Robot.new - end - - def test_lasers - assert_equal "OHAI!", @robot.can_shoot_lasers? - pass - end - - def test_fly - refute_match /^no/i, @robot.can_fly? - pass - end - - def test_fail - fail "fail" - pass - end - - def test_01_will_be_skipped - skip "test this later" - pass - end - - def test_socket_failure - assert_tcp_socket('localhost', 900000) - pass - end - - def test_warn - block_test do - warn "not everything", "is a success or failure" - end - end - - # used to test extracting the proper caller even when in a block - def block_test - yield - end - - def test_socket_success - fork { - Socket.tcp_server_loop('localhost', 12345) do |sock, client_addrinfo| - begin - sock.write('hi') - ensure - sock.close - exit - end - end - } - sleep 0.2 - assert_tcp_socket('localhost', 12345) - pass - end - -end |