示例#1
0
    def test_install_returns_bowerrc_and_downloads_dir(self, chdir, spcall):
        options = {"recipe": "bowerrecipe", "packages": "jquery", "downloads": "../downloads"}
        recipe = Recipe(self.buildout, "bower", options)

        base_path, downloads_path = recipe.install()
        self.assertEqual(os.path.join(self.base_dir, ".bowerrc"), base_path)
        self.assertEqual(os.path.join(self.parts_dir, "downloads"), downloads_path)
示例#2
0
文件: tests.py 项目: sweh/bowerrecipe
    def test_multiple_packages_can_be_installed(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe', 'packages': 'jquery bootstrap'}
        recipe = Recipe(self.buildout, 'bower', options)

        recipe.install()

        spcall.assert_called_with('bower install jquery bootstrap', shell=True)
示例#3
0
    def test_multiple_packages_can_be_installed(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe', 'packages': 'jquery bootstrap'}
        recipe = Recipe(self.buildout, 'bower', options)

        recipe.install()

        spcall.assert_called_with('bower install jquery bootstrap', shell=True)
示例#4
0
    def test_multiple_packages_can_be_installed(self, chdir, spcall):
        options = {"recipe": "bowerrecipe", "packages": "jquery bootstrap"}
        recipe = Recipe(self.buildout, "bower", options)

        recipe.install()

        spcall.assert_called_with("bower install jquery bootstrap", shell=True)
示例#5
0
    def test_changes_to_correct_directory_pre_install(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe', 'packages': 'jquery'}
        recipe = Recipe(self.buildout, 'bower', options)

        recipe.install()

        chdir.assert_called_with(self.base_dir)
示例#6
0
    def test_packages_can_be_specified_on_multiple_lines(self, chdir, spcall):
        options = {"recipe": "bowerrecipe", "packages": "\n  jquery#1.8.1  \n  underscore  "}
        recipe = Recipe(self.buildout, "bower", options)

        recipe.install()

        spcall.assert_called_with("bower install jquery#1.8.1 underscore", shell=True)
示例#7
0
文件: tests.py 项目: sweh/bowerrecipe
    def test_changes_to_correct_directory_pre_install(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe', 'packages': 'jquery'}
        recipe = Recipe(self.buildout, 'bower', options)

        recipe.install()

        chdir.assert_called_with(self.base_dir)
示例#8
0
    def test_changes_to_correct_directory_pre_install(self, chdir, spcall):
        options = {"recipe": "bowerrecipe", "packages": "jquery"}
        recipe = Recipe(self.buildout, "bower", options)

        recipe.install()

        chdir.assert_called_with(self.base_dir)
示例#9
0
    def test_install_should_call_bower_install(self, chdir, spcall):
        options = {"recipe": "bowerrecipe", "packages": "jquery", "executable": "testbinary"}
        recipe = Recipe(self.buildout, "bower", options)

        recipe.install()

        spcall.assert_called_with("testbinary install jquery", shell=True)
示例#10
0
    def test_bowerrc_file_should_reside_in_base_dir(self, chdir, spcall):
        options = {"recipe": "bowerrecipe", "base-directory": self.parts_dir, "packages": "jquery"}
        bowerrc = os.path.join(self.parts_dir, ".bowerrc")
        recipe = Recipe(self.buildout, "bower", options)

        recipe.install()

        self.assertTrue(os.path.exists(bowerrc))
示例#11
0
    def test_install_should_call_bower_install(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe',
                   'packages': 'jquery',
                   'executable': 'testbinary'}
        recipe = Recipe(self.buildout, 'bower', options)

        recipe.install()

        spcall.assert_called_with('testbinary install jquery', shell=True)
示例#12
0
    def test_packages_can_be_specified_on_multiple_lines(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe',
                   'packages': '\n  jquery#1.8.1  \n  underscore  '}
        recipe = Recipe(self.buildout, 'bower', options)

        recipe.install()

        spcall.assert_called_with('bower install jquery#1.8.1 underscore',
                                  shell=True)
示例#13
0
文件: tests.py 项目: sweh/bowerrecipe
    def test_install_should_call_bower_install(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe',
                   'packages': 'jquery',
                   'executable': 'testbinary'}
        recipe = Recipe(self.buildout, 'bower', options)

        recipe.install()

        spcall.assert_called_with('testbinary install jquery', shell=True)
示例#14
0
文件: tests.py 项目: sweh/bowerrecipe
    def test_packages_can_be_specified_on_multiple_lines(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe',
                   'packages': '\n  jquery#1.8.1  \n  underscore  '}
        recipe = Recipe(self.buildout, 'bower', options)

        recipe.install()

        spcall.assert_called_with('bower install jquery#1.8.1 underscore',
                                  shell=True)
示例#15
0
文件: tests.py 项目: sweh/bowerrecipe
    def test_install_returns_base_and_downloads_dirs(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe',
                   'packages': 'jquery',
                   'downloads': '../downloads'}
        recipe = Recipe(self.buildout, 'bower', options)

        base_path, downloads_path = recipe.install()
        self.assertEqual(os.path.join(self.base_dir, '.bowerrc'), base_path)
        self.assertEqual(os.path.join(self.parts_dir, 'downloads'),
                         downloads_path)
示例#16
0
文件: tests.py 项目: sweh/bowerrecipe
    def test_bowerrc_file_should_reside_in_base_dir(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe',
                   'base-directory': self.parts_dir,
                   'packages': 'jquery'}
        bowerrc = os.path.join(self.parts_dir, '.bowerrc')
        recipe = Recipe(self.buildout, 'bower', options)

        recipe.install()

        self.assertTrue(os.path.exists(bowerrc))
示例#17
0
    def test_install_returns_base_and_downloads_dirs(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe',
                   'packages': 'jquery',
                   'downloads': '../downloads'}
        recipe = Recipe(self.buildout, 'bower', options)

        base_path, downloads_path = recipe.install()
        self.assertEqual(self.base_dir, base_path)
        self.assertEqual(os.path.join(self.parts_dir, 'downloads'),
                         downloads_path)
示例#18
0
    def test_bowerrc_file_should_reside_in_base_dir(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe',
                   'base-directory': self.parts_dir,
                   'packages': 'jquery'}
        bowerrc = os.path.join(self.parts_dir, '.bowerrc')
        recipe = Recipe(self.buildout, 'bower', options)

        recipe.install()

        self.assertTrue(os.path.exists(bowerrc))
示例#19
0
    def test_bowerrc_file_should_be_configured(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe', 'packages': 'jquery'}
        recipe = Recipe(self.buildout, 'bower', options)
        expected = json.dumps({'directory': options['downloads']})
        bowerrc = os.path.join(self.base_dir, '.bowerrc')

        recipe.install()

        with open(bowerrc) as f:
            config = json.dumps(json.load(f))
        self.assertEqual(expected, config)
示例#20
0
文件: tests.py 项目: sweh/bowerrecipe
    def test_bowerrc_file_should_be_configured(self, chdir, spcall):
        options = {'recipe': 'bowerrecipe', 'packages': 'jquery'}
        recipe = Recipe(self.buildout, 'bower', options)
        expected = json.dumps({'directory': options['downloads']})
        bowerrc = os.path.join(self.base_dir, '.bowerrc')

        recipe.install()

        with open(bowerrc) as f:
            config = json.dumps(json.load(f))
        self.assertEqual(expected, config)
示例#21
0
    def test_bowerrc_file_should_be_configured(self, chdir, spcall):
        options = {"recipe": "bowerrecipe", "packages": "jquery"}
        recipe = Recipe(self.buildout, "bower", options)
        expected = json.dumps({"directory": options["downloads"]})
        bowerrc = os.path.join(self.base_dir, ".bowerrc")

        recipe.install()

        with open(bowerrc) as f:
            config = json.dumps(json.load(f))
        self.assertEqual(expected, config)
示例#22
0
 def test_base_directory_should_have_a_default(self, chdir, spcall):
     options = {'recipe': 'bowerrecipe', 'packages': 'jquery'}
     Recipe(self.buildout, 'bower', options)
     self.assertEqual(self.base_dir, options['base-directory'])
示例#23
0
 def test_downloads_default_to_sensible_location(self, chdir, spcall):
     options = {'recipe': 'bowerrecipe', 'packages': 'jquery'}
     Recipe(self.buildout, 'bower', options)
     self.assertEqual('downloads', options['downloads'])
示例#24
0
 def test_exe_should_default_to_bower_on_path(self, chdir, spcall):
     options = {'recipe': 'bowerrecipe', 'packages': 'jquery'}
     Recipe(self.buildout, 'bower', options)
     self.assertEqual('bower', options['executable'])