Пример #1
0
 def test_run_hook_shell_executable(self):
     with patch('subprocess.Popen') as subprocess:
         hook_path = os.path.join(self.hooks_path, 'pre_gen_project.sh')
         hooks._run_hook(hook_path)
         script_path = hook_path
         run_thru_shell = sys.platform.startswith('win')
         subprocess.assert_called_with(script_path, cwd='.', shell=run_thru_shell)
Пример #2
0
 def test_run_hook_with_context(self):
     '''execute a hook script, passing a context'''
     context = {'cookiecutter': {'file': 'shell_post.txt'}}
     shell_script = os.path.join(self.hooks_path, 'post_gen_project_with_context.sh')
     hooks._run_hook(shell_script, 'tests', context)
     self.assertTrue(os.path.isfile('tests/shell_post.txt'))
     self.assertFalse('tests' in os.getcwd())
Пример #3
0
 def test_run_hook_with_context(self):
     '''execute a hook script, passing a context'''
     context = {'cookiecutter': {'file': 'shell_post.txt'}}
     shell_script = os.path.join(self.hooks_path,
                                 'post_gen_project_with_context.sh')
     hooks._run_hook(shell_script, 'tests', context)
     self.assertTrue(os.path.isfile('tests/shell_post.txt'))
     self.assertFalse('tests' in os.getcwd())
Пример #4
0
 def test_run_hook_python_executable(self):
     with patch('subprocess.Popen') as subprocess:
         hook_path = os.path.join(self.hooks_path, 'pre_gen_project.py')
         hooks._run_hook(hook_path)
         script_path = [sys.executable, hook_path]
         run_thru_shell = sys.platform.startswith('win')
         subprocess.assert_called_with(script_path,
                                       cwd='.',
                                       shell=run_thru_shell)
Пример #5
0
 def test_run_hook_cwd(self):
     '''Change directory before running hook'''
     hooks._run_hook(os.path.join(self.hooks_path, 'post_gen_project.sh'), 
                     'tests')
     self.assertTrue(os.path.isfile('tests/shell_post.txt'))
     self.assertFalse('tests' in os.getcwd())
Пример #6
0
 def test_run_hook(self):
     '''execute a hook script, independently of project generation'''
     hooks._run_hook(os.path.join(self.hooks_path, 'post_gen_project.sh'))
     self.assertTrue(os.path.isfile('shell_post.txt'))