当前位置: 首页>>代码示例>>Python>>正文


Python WarningsDatabase.insert方法代码示例

本文整理汇总了Python中mozbuild.compilation.warnings.WarningsDatabase.insert方法的典型用法代码示例。如果您正苦于以下问题:Python WarningsDatabase.insert方法的具体用法?Python WarningsDatabase.insert怎么用?Python WarningsDatabase.insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在mozbuild.compilation.warnings.WarningsDatabase的用法示例。


在下文中一共展示了WarningsDatabase.insert方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_basic

# 需要导入模块: from mozbuild.compilation.warnings import WarningsDatabase [as 别名]
# 或者: from mozbuild.compilation.warnings.WarningsDatabase import insert [as 别名]
    def test_basic(self):
        db = WarningsDatabase()

        self.assertEqual(len(db), 0)

        for i in range(10):
            db.insert(get_warning(), compute_hash=False)

        self.assertEqual(len(db), 10)

        warnings = list(db)
        self.assertEqual(len(warnings), 10)
开发者ID:Andrel322,项目名称:gecko-dev,代码行数:14,代码来源:test_warnings.py

示例2: test_pruning

# 需要导入模块: from mozbuild.compilation.warnings import WarningsDatabase [as 别名]
# 或者: from mozbuild.compilation.warnings.WarningsDatabase import insert [as 别名]
    def test_pruning(self):
        """Ensure old warnings are removed from database appropriately."""
        db = WarningsDatabase()

        source_files = []
        for i in range(1, 21):
            temp = NamedTemporaryFile(mode='wt')
            temp.write('x' * (100 * i))
            temp.flush()

            # Keep reference so it doesn't get GC'd and deleted.
            source_files.append(temp)

            w = CompilerWarning()
            w['filename'] = temp.name
            w['line'] = 1
            w['column'] = i * 10
            w['message'] = 'irrelevant'

            db.insert(w)

        self.assertEqual(len(db), 20)

        # If we change a source file, inserting a new warning should nuke the
        # old one.
        source_files[0].write('extra')
        source_files[0].flush()

        w = CompilerWarning()
        w['filename'] = source_files[0].name
        w['line'] = 1
        w['column'] = 50
        w['message'] = 'replaced'

        db.insert(w)

        self.assertEqual(len(db), 20)

        warnings = list(db.warnings_for_file(source_files[0].name))
        self.assertEqual(len(warnings), 1)
        self.assertEqual(warnings[0]['column'], w['column'])

        # If we delete the source file, calling prune should cause the warnings
        # to go away.
        old_filename = source_files[0].name
        del source_files[0]

        self.assertFalse(os.path.exists(old_filename))

        db.prune()
        self.assertEqual(len(db), 19)
开发者ID:Andrel322,项目名称:gecko-dev,代码行数:53,代码来源:test_warnings.py

示例3: test_hashing

# 需要导入模块: from mozbuild.compilation.warnings import WarningsDatabase [as 别名]
# 或者: from mozbuild.compilation.warnings.WarningsDatabase import insert [as 别名]
    def test_hashing(self):
        """Ensure that hashing files on insert works."""
        db = WarningsDatabase()

        temp = NamedTemporaryFile(mode='wt')
        temp.write('x' * 100)
        temp.flush()

        w = CompilerWarning()
        w['filename'] = temp.name
        w['line'] = 1
        w['column'] = 4
        w['message'] = 'foo bar'

        # Should not throw.
        db.insert(w)

        w['filename'] = 'DOES_NOT_EXIST'

        with self.assertRaises(Exception):
            db.insert(w)
开发者ID:Andrel322,项目名称:gecko-dev,代码行数:23,代码来源:test_warnings.py


注:本文中的mozbuild.compilation.warnings.WarningsDatabase.insert方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。