예제 #1
0
def lint_cmd(args, conf):
    "Check some common mistakes"
    LOG.debug('starting lint')
    notesdir = os.path.join(conf.reporoot, conf.notespath)
    notes = glob.glob(os.path.join(notesdir, '*.yaml'))

    error = 0
    load = loader.Loader(conf, ignore_cache=True)
    allowed_section_names = [conf.prelude_section_name] + \
                            [s[0] for s in conf.sections]

    uids = {}
    for f in notes:
        LOG.debug('examining %s', f)
        uid = scanner._get_unique_id(f)
        uids.setdefault(uid, []).append(f)

        content = load.parse_note_file(f, None)
        for section_name in content.keys():
            if section_name not in allowed_section_names:
                LOG.warning('unrecognized section name %s in %s',
                            section_name, f)
                error = 1

    for uid, names in sorted(uids.items()):
        if len(names) > 1:
            LOG.warning('UID collision: %s', names)
            error = 1

    return error
예제 #2
0
 def test_modern(self):
     uid = scanner._get_unique_id(
         'releasenotes/notes/slug1-0000000000000001.yaml')
     self.assertEqual('0000000000000001', uid)
예제 #3
0
 def test_legacy(self):
     uid = scanner._get_unique_id(
         'releasenotes/notes/0000000000000001-slug1.yaml')
     self.assertEqual('0000000000000001', uid)
예제 #4
0
 def test_modern(self):
     uid = scanner._get_unique_id(
         'releasenotes/notes/slug1-0000000000000001.yaml'
     )
     self.assertEqual('0000000000000001', uid)
예제 #5
0
 def test_legacy(self):
     uid = scanner._get_unique_id(
         'releasenotes/notes/0000000000000001-slug1.yaml'
     )
     self.assertEqual('0000000000000001', uid)
예제 #6
0
 def test_modern(self):
     uid = scanner._get_unique_id("releasenotes/notes/slug1-0000000000000001.yaml")
     self.assertEqual("0000000000000001", uid)
예제 #7
0
 def test_legacy(self):
     uid = scanner._get_unique_id("releasenotes/notes/0000000000000001-slug1.yaml")
     self.assertEqual("0000000000000001", uid)