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 51 52 53 54 55 56 57 58
|
$VERBOSE = true
require 'minitest/autorun'
$:.unshift(File.expand_path("..", "lib"))
require 'netrc'
class TestLex < Minitest::Test
def test_lex_empty
t = Netrc.lex([])
assert_equal([], t)
end
def test_lex_comment
t = Netrc.lex(["# foo\n"])
assert_equal(["# foo\n"], t)
end
def test_lex_comment_after_space
t = Netrc.lex([" # foo\n"])
assert_equal([" # foo\n"], t)
end
def test_lex_comment_after_word
t = Netrc.lex(["x # foo\n"])
assert_equal(["x", " # foo\n"], t)
end
def test_lex_comment_with_hash
t = Netrc.lex(["x # foo # bar\n"])
assert_equal(["x", " # foo # bar\n"], t)
end
def test_lex_word
t = Netrc.lex(["x"])
assert_equal(["x"], t)
end
def test_lex_two_lines
t = Netrc.lex(["x\ny\n"])
assert_equal(["x", "\n", "y", "\n"], t)
end
def test_lex_word_and_comment
t = Netrc.lex(["x\n", "# foo\n"])
assert_equal(["x", "\n", "# foo\n"], t)
end
def test_lex_six_words
t = Netrc.lex(["machine m login l password p\n"])
e = ["machine", " ", "m", " ", "login", " ", "l", " ", "password", " ", "p", "\n"]
assert_equal(e, t)
end
def test_lex_complex
t = Netrc.lex(["machine sub.domain.com login email@domain.com password pass\n"])
e = ["machine", " ", "sub.domain.com", " ", "login", " ", "email@domain.com", " ", "password", " ", "pass", "\n"]
assert_equal(e, t)
end
end
|