diff options
author | cinap_lenrek <cinap_lenrek@localhost> | 2011-05-03 11:25:13 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@localhost> | 2011-05-03 11:25:13 +0000 |
commit | 458120dd40db6b4df55a4e96b650e16798ef06a0 (patch) | |
tree | 8f82685be24fef97e715c6f5ca4c68d34d5074ee /sys/lib/python/test/test_netrc.py | |
parent | 3a742c699f6806c1145aea5149bf15de15a0afd7 (diff) |
add hg and python
Diffstat (limited to 'sys/lib/python/test/test_netrc.py')
-rw-r--r-- | sys/lib/python/test/test_netrc.py | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/sys/lib/python/test/test_netrc.py b/sys/lib/python/test/test_netrc.py new file mode 100644 index 000000000..b536255ab --- /dev/null +++ b/sys/lib/python/test/test_netrc.py @@ -0,0 +1,48 @@ + +import netrc, os, unittest, sys +from test import test_support + +TEST_NETRC = """ +machine foo login log1 password pass1 account acct1 + +macdef macro1 +line1 +line2 + +macdef macro2 +line3 +line4 + +default login log2 password pass2 + +""" + +temp_filename = test_support.TESTFN + +class NetrcTestCase(unittest.TestCase): + + def setUp (self): + mode = 'w' + if sys.platform not in ['cygwin']: + mode += 't' + fp = open(temp_filename, mode) + fp.write(TEST_NETRC) + fp.close() + self.netrc = netrc.netrc(temp_filename) + + def tearDown (self): + del self.netrc + os.unlink(temp_filename) + + def test_case_1(self): + self.assert_(self.netrc.macros == {'macro1':['line1\n', 'line2\n'], + 'macro2':['line3\n', 'line4\n']} + ) + self.assert_(self.netrc.hosts['foo'] == ('log1', 'acct1', 'pass1')) + self.assert_(self.netrc.hosts['default'] == ('log2', None, 'pass2')) + +def test_main(): + test_support.run_unittest(NetrcTestCase) + +if __name__ == "__main__": + test_main() |