From 1f87903b31b5ba6e626776a00b6d0d6ba2dfcaf6 Mon Sep 17 00:00:00 2001 From: cvs2svn Date: Mon, 25 Mar 2002 13:23:53 +0000 Subject: [PATCH] This commit was manufactured by cvs2svn to create branch 'release22-maint'. --- Lib/test/test_netrc.py | 43 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 Lib/test/test_netrc.py diff --git a/Lib/test/test_netrc.py b/Lib/test/test_netrc.py new file mode 100644 index 000000000000..5922fdc161cb --- /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) + -- 2.47.3