Add cmd_pt test.
authorCarl Hetherington <cth@carlh.net>
Tue, 8 Dec 2015 23:24:25 +0000 (23:24 +0000)
committerCarl Hetherington <cth@carlh.net>
Tue, 8 Dec 2015 23:24:25 +0000 (23:24 +0000)
TODO
cdist/cmd_pot.py
cdist/tests/test_cmd_pot.py [new file with mode: 0644]

diff --git a/TODO b/TODO
index fa4b5a1aa0199fc875646c208bb93c53945fafe9..61e5bc19f36389767b645f857df656338252acdf 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,2 +1,3 @@
 remove need for os.path.abspath in cscripts
 tidy build/build_dependencies stuff
+common stuff for commands which call a method to get some files
\ No newline at end of file
index 5a64e5ca842803f154d0fce072e97d54442c2333..0c340f07be1c6e054bfa5f3bd1fbcdda46cc62de 100644 (file)
@@ -1,3 +1,24 @@
+#
+#    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+#
+#    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., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+from target import SourceTarget
+import globals
+from util import *
+
 class CmdPot(object):
     def __init__(self):
         self.name = 'pot'
@@ -9,6 +30,6 @@ class CmdPot(object):
 
         pots = tree.call('make_pot')
         for p in pots:
-            copyfile(p, '%s%s' % (args.output, os.path.basename(p)))
+            copyfile(p, os.path.join(args.output, os.path.basename(p)))
 
         target.cleanup()
diff --git a/cdist/tests/test_cmd_pot.py b/cdist/tests/test_cmd_pot.py
new file mode 100644 (file)
index 0000000..99a44b5
--- /dev/null
@@ -0,0 +1,53 @@
+#
+#    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+#
+#    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., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+import os
+import shutil
+from unittest import TestCase
+
+import cdist.cmd_pot
+import cdist.globals
+from cdist.util import command
+import prepare
+
+class TestCmdPot(TestCase):
+    def test(self):
+
+        prepare.project()
+        os.chdir('test/project.git')
+        with open('cscript', 'a') as f:
+            print>>f,'import os'
+            print>>f,'def make_pot(target):'
+            print>>f,'    os.system("touch fr de it")'
+            print>>f,'    return [os.path.abspath("fr"), os.path.abspath("de"), os.path.abspath("it")]'
+        command('git commit -a -m "foo"')
+        os.chdir('../..')
+
+        class Args:
+            target = 'test'
+            debug = False
+            work = 'test'
+            project = 'project'
+            checkout = None
+            keep = False
+            output = os.path.abspath('test')
+        cdist.globals.config.set('git_prefix', 'test')
+        cdist.cmd_pot.CmdPot().run(Args())
+
+        self.assertTrue(os.path.exists('test/fr'))
+        self.assertTrue(os.path.exists('test/de'))
+        self.assertTrue(os.path.exists('test/it'))