當前位置: 首頁>>代碼示例>>Python>>正文


Python Environment.save_file方法代碼示例

本文整理匯總了Python中gears.environment.Environment.save_file方法的典型用法代碼示例。如果您正苦於以下問題:Python Environment.save_file方法的具體用法?Python Environment.save_file怎麽用?Python Environment.save_file使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在gears.environment.Environment的用法示例。


在下文中一共展示了Environment.save_file方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: EnvironmentFindTests

# 需要導入模塊: from gears.environment import Environment [as 別名]
# 或者: from gears.environment.Environment import save_file [as 別名]
class EnvironmentFindTests(TestCase):

    def setUp(self):
        self.environment = Environment(STATIC_DIR)
        self.environment.register_defaults()
        self.environment.finders.register(FakeFinder())
        self.environment.compilers.register(
            '.coffee', FakeCompiler('application/javascript'))

    def check_asset_attributes(self, attrs, path):
        self.assertIsInstance(attrs, AssetAttributes)
        self.assertIs(attrs.environment, self.environment)
        self.assertEqual(attrs.path, path)

    def test_find_by_path(self):
        attrs, path = self.environment.find('js/models.js.coffee')
        self.check_asset_attributes(attrs, 'js/models.js.coffee')
        self.assertEqual(path, '/assets/js/models.js.coffee')

    def test_find_nothing_by_path(self):
        with self.assertRaises(FileNotFound):
            self.environment.find('js/models.js')

    def test_find_by_path_list(self):
        attrs, path = self.environment.find(['js/app.js', 'js/app/index.js'])
        self.check_asset_attributes(attrs, 'js/app/index.js')
        self.assertEqual(path, '/assets/js/app/index.js')

    def test_find_nothing_by_path_list(self):
        with self.assertRaises(FileNotFound):
            self.environment.find(['style.css', 'style/index.css'])

    def test_find_by_asset_attributes(self):
        attrs = AssetAttributes(self.environment, 'js/app.js')
        attrs, path = self.environment.find(attrs)
        self.check_asset_attributes(attrs, 'js/app/index.js')
        self.assertEqual(path, '/assets/js/app/index.js')

    def test_find_nothing_by_asset_attributes(self):
        attrs = AssetAttributes(self.environment, 'js/models.js')
        with self.assertRaises(FileNotFound):
            self.environment.find(attrs)

    def test_find_by_logical_path(self):
        attrs, path = self.environment.find('js/models.js', logical=True)
        self.check_asset_attributes(attrs, 'js/models.js.coffee')
        self.assertEqual(path, '/assets/js/models.js.coffee')

    def test_find_nothing_by_logical_path(self):
        with self.assertRaises(FileNotFound):
            self.environment.find('js/views.js', logical=True)

    def test_save_file(self):
        with remove_static_dir():
            self.environment.save_file('js/script.js', 'hello world')
            with open(os.path.join(STATIC_DIR, 'js', 'script.js')) as f:
                self.assertEqual(f.read(), 'hello world')
開發者ID:xobb1t,項目名稱:gears,代碼行數:59,代碼來源:test_environment.py

示例2: EnvironmentFindTests

# 需要導入模塊: from gears.environment import Environment [as 別名]
# 或者: from gears.environment.Environment import save_file [as 別名]
class EnvironmentFindTests(TestCase):
    def setUp(self):
        self.environment = Environment(STATIC_DIR)
        self.environment.register_defaults()
        self.environment.finders.register(FakeFinder())
        self.environment.compilers.register(".coffee", FakeCompiler("application/javascript"))

    def check_asset_attributes(self, attrs, path):
        self.assertIsInstance(attrs, AssetAttributes)
        self.assertIs(attrs.environment, self.environment)
        self.assertEqual(attrs.path, path)

    def test_find_by_path(self):
        attrs, path = self.environment.find("js/models.js.coffee")
        self.check_asset_attributes(attrs, "js/models.js.coffee")
        self.assertEqual(path, "/assets/js/models.js.coffee")

    def test_find_nothing_by_path(self):
        with self.assertRaises(FileNotFound):
            self.environment.find("js/models.js")

    def test_find_by_path_list(self):
        attrs, path = self.environment.find(["js/app.js", "js/app/index.js"])
        self.check_asset_attributes(attrs, "js/app/index.js")
        self.assertEqual(path, "/assets/js/app/index.js")

    def test_find_nothing_by_path_list(self):
        with self.assertRaises(FileNotFound):
            self.environment.find(["style.css", "style/index.css"])

    def test_find_by_asset_attributes(self):
        attrs = AssetAttributes(self.environment, "js/app.js")
        attrs, path = self.environment.find(attrs)
        self.check_asset_attributes(attrs, "js/app/index.js")
        self.assertEqual(path, "/assets/js/app/index.js")

    def test_find_nothing_by_asset_attributes(self):
        attrs = AssetAttributes(self.environment, "js/models.js")
        with self.assertRaises(FileNotFound):
            self.environment.find(attrs)

    def test_find_by_logical_path(self):
        attrs, path = self.environment.find("js/models.js", logical=True)
        self.check_asset_attributes(attrs, "js/models.js.coffee")
        self.assertEqual(path, "/assets/js/models.js.coffee")

    def test_find_by_logical_path_with_unrecognized_extension(self):
        attrs, path = self.environment.find("images/logo.png", logical=True)
        self.check_asset_attributes(attrs, "images/logo.png")
        self.assertEqual(path, "/assets/images/logo.png")

    def test_find_nothing_by_logical_path(self):
        with self.assertRaises(FileNotFound):
            self.environment.find("js/views.js", logical=True)

    def test_save_file(self):
        source = "hello world"
        if sys.version_info >= (3, 0):
            source = bytes(source, "utf-8")
        with remove_static_dir():
            self.environment.save_file("js/script.js", source)
            with open(os.path.join(STATIC_DIR, "js", "script.js"), "rb") as f:
                self.assertEqual(f.read(), source)
開發者ID:jjay,項目名稱:gears,代碼行數:65,代碼來源:test_environment.py


注:本文中的gears.environment.Environment.save_file方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。