-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enable rules plugin support and make yamllint loads plugin rules also, along with simple test cases loading rules.
- Loading branch information
Showing
2 changed files
with
64 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright (C) 2020 Satoru SATOH | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
import unittest | ||
|
||
from tests.plugins import example | ||
|
||
import yamllint.rules | ||
|
||
|
||
RULE_NEVER_EXISTS = "rule_never_exists" | ||
PLUGIN_RULES = example.RULES_MAP | ||
|
||
|
||
class TestCase(unittest.TestCase): | ||
"""Test cases for yamllint.rules.__init__.*. | ||
""" | ||
def test_get_default_rules(self): | ||
self.assertEqual(yamllint.rules.get(yamllint.rules.braces.ID), | ||
yamllint.rules.braces) | ||
self.assertEqual(yamllint.rules.get(yamllint.rules.braces.ID, | ||
plugin_rules=PLUGIN_RULES), | ||
yamllint.rules.braces) | ||
with self.assertRaises(ValueError): | ||
yamllint.rules.get(RULE_NEVER_EXISTS) | ||
|
||
def test_get_plugin_rules(self): | ||
plugin_rule_id = example.override_comments.ID | ||
plugin_rule_mod = example.override_comments | ||
|
||
self.assertEqual(yamllint.rules.get(plugin_rule_id, | ||
plugin_rules=PLUGIN_RULES), | ||
plugin_rule_mod) | ||
|
||
with self.assertRaises(ValueError): | ||
yamllint.rules.get(RULE_NEVER_EXISTS, plugin_rules=PLUGIN_RULES) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters