diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2002-03-22 02:48:57 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2002-03-22 02:48:57 (GMT) |
commit | 76fffd81e9689bad56b3e7c766606831c6cfc3df (patch) | |
tree | 1c3ca20b951f898f385f27408bac8ed529a2a699 /Lib/test/test_netrc.py | |
parent | bab22beda8583471caf44b2e91f0fc18b62d3405 (diff) | |
download | cpython-76fffd81e9689bad56b3e7c766606831c6cfc3df.zip cpython-76fffd81e9689bad56b3e7c766606831c6cfc3df.tar.gz cpython-76fffd81e9689bad56b3e7c766606831c6cfc3df.tar.bz2 |
Add a simple test suite for netrc.py, and remove it from test_sundry
Diffstat (limited to 'Lib/test/test_netrc.py')
-rw-r--r-- | Lib/test/test_netrc.py | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/Lib/test/test_netrc.py b/Lib/test/test_netrc.py new file mode 100644 index 0000000..5922fdc --- /dev/null +++ b/Lib/test/test_netrc.py @@ -0,0 +1,43 @@ + +import netrc, os, tempfile, test_support, unittest + +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 = tempfile.mktemp() + +class NetrcTestCase(unittest.TestCase): + + def setUp (self): + fp = open(temp_filename, 'wt') + 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')) + + +if __name__ == "__main__": + test_support.run_unittest(NetrcTestCase) + |