]> git.decadent.org.uk Git - dak.git/blobdiff - test/005/test.py
2004-01-21 James Troup <james@nocrew.org> * utils.py (parse_changes): don't process...
[dak.git] / test / 005 / test.py
diff --git a/test/005/test.py b/test/005/test.py
new file mode 100755 (executable)
index 0000000..3f6ca25
--- /dev/null
@@ -0,0 +1,57 @@
+#!/usr/bin/env python
+
+# Check utils.parse_changes()'s for handling of multi-line fields
+# Copyright (C) 2004  James Troup <james@nocrew.org>
+# $Id: test.py,v 1.1 2004-01-21 03:20:52 troup Exp $
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+################################################################################
+
+# Check util.parse_changes() correctly ignores data outside the signed area
+
+################################################################################
+
+import os, sys
+
+sys.path.append(os.path.abspath('../../'));
+
+import utils
+
+################################################################################
+
+def fail(message):
+    sys.stderr.write("%s\n" % (message));
+    sys.exit(1);
+
+################################################################################
+
+def main ():
+    for file in [ "valid", "bogus-pre", "bogus-post", "evil" ]:
+        for strict_whitespace in [ 0, 1 ]:
+            if file == "evil" and strict_whitespace == 1:
+                continue;
+            try:
+                changes = utils.parse_changes("%s.changes" % (file), strict_whitespace)
+            except utils.changes_parse_error_exc, line:
+                fail("%s[%s]: parse_changes() returned an exception with error message `%s'." % (file, strict_whitespace, line));
+            oh_dear = changes.get("you");
+            if oh_dear:
+                fail("%s[%s]: parsed and accepted unsigned data!" % (file, strict_whitespace));
+
+################################################################################
+
+if __name__ == '__main__':
+    main()