Passed
Push — master ( 6428d5...bc0e9d )
by Matěj
90:12 queued 26s
created

Client.get_selection_rules()   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 2
nop 1
dl 0
loc 2
ccs 2
cts 2
cp 1
crap 1
rs 10
c 0
b 0
f 0
1 1
import argparse
0 ignored issues
show
introduced by
Missing module docstring
Loading history...
2 1
import re
3 1
import sys
4 1
from datetime import datetime
5
6 1
from .. import __version__
7
8
9 1
class Client():
0 ignored issues
show
introduced by
Missing class docstring
Loading history...
10 1
    def __init__(self, args):
11 1
        self.arg = self.parse_arguments(args)
12
13 1
        self.source_filename = self.arg.source_filename
14 1
        self.rule_name = self.arg.rule_id
15
16 1
        self.isatty = sys.stdout.isatty()
17
18 1
        self.all_rules = self.arg.all
19 1
        self.show_failed_rules = False
20 1
        self.show_not_selected_rules = False
21
22 1
    @staticmethod
23
    def _get_message():
24 1
        return {
25
            'description': '',
26
            'source_filename': '',
27
        }
28
29 1
    @staticmethod
30
    def _get_date():
31 1
        return str(datetime.now().strftime("-%d_%m_%Y-%H_%M_%S"))
32
33
    # Functions for selection of rules
34
35 1
    def search_rules_id(self):
36
        """
37
        Function retunes array of all matched IDs of rules in selected file.
38
        """
39 1
        raise NotImplementedError
40
41 1
    def get_only_fail_rule(self, rules):
42
        """
43
        Function processes array of matched IDs of rules in selected file.
44
        Function retunes array of failed matched IDs of rules in selected file.
45
        """
46 1
        raise NotImplementedError
47
48 1
    def _get_rows_of_unselected_rules(self):
49
        """
50
        Function retunes array of rows where is not selected IDs of rules in selected file.
51
        """
52 1
        raise NotImplementedError
53
54 1
    def run_gui_and_return_answers(self):
0 ignored issues
show
introduced by
Missing function or method docstring
Loading history...
55 1
        if self.isatty:
56 1
            if self.all_rules:
57 1
                return self._get_rules()
58
59 1
            try:
60 1
                import inquirer
0 ignored issues
show
introduced by
Import outside toplevel (inquirer)
Loading history...
61 1
                return inquirer.prompt(self.get_questions())
62 1
            except ImportError:
63 1
                print(self.get_selection_rules())
64 1
            return None
65 1
        return self._get_rules()
66
67 1
    def _get_rules(self):
68 1
        if self.show_failed_rules:
69 1
            return {'rules': self.get_only_fail_rule(self.search_rules_id())}
70 1
        return {'rules': self.search_rules_id()}
71
72 1
    def _get_list_of_matched_rules(self):
73 1
        if self.show_failed_rules:
74 1
            return self.get_only_fail_rule(self.search_rules_id())
75 1
        return self.search_rules_id()
76
77 1
    def _get_list_of_lines(self):
78 1
        lines = ['== The Rule ID regular expressions ==']
79 1
        for rule in self._get_list_of_matched_rules():
80 1
            lines.append("^" + rule + "$")
81 1
        if self.show_not_selected_rules:
82 1
            for line in self._get_rows_of_unselected_rules():
83 1
                lines.append(line)
84 1
        lines.append(
85
            "Interactive rule selection is not available,"
86
            " because inquirer is not installed."
87
            " Copy id of the rule you want to visualize and"
88
            " paste it into a command with regular"
89
            " expression characters(^$).\n"
90
            "Alternatively, use the --all or --all-in-one arguments.")
91 1
        return lines
92
93 1
    def get_selection_rules(self):
0 ignored issues
show
introduced by
Missing function or method docstring
Loading history...
94 1
        return "\n".join(self._get_list_of_lines())
95
96 1
    def _get_choices(self):
97 1
        if self.show_not_selected_rules:
98 1
            print("\n".join(self._get_rows_of_unselected_rules()))
99 1
        return self._get_list_of_matched_rules()
100
101 1
    def get_questions(self):
0 ignored issues
show
introduced by
Missing function or method docstring
Loading history...
102 1
        from inquirer.questions import Checkbox as checkbox
0 ignored issues
show
introduced by
Import outside toplevel (inquirer.questions.Checkbox)
Loading history...
103 1
        choices = self._get_choices()
104 1
        questions = [
105
            checkbox(
106
                'rules',
107
                message=(
108
                    "= The Rules IDs = (move - UP and DOWN arrows,"
109
                    " select - SPACE or LEFT and RIGHT arrows, submit - ENTER)"),
110
                choices=choices,
111
            ),
112
        ]
113 1
        return questions
114
115 1
    def _get_wanted_rules(self, rules):
116 1
        return [
117
            x for x in rules if re.search(
118
                self.rule_name, x)]
119
120 1
    def _check_rules_id(self, rules, notselected_rules):
121 1
        if notselected_rules and not rules:
122 1
            raise ValueError(
123
                ('Rule(s) "{}" was not selected, '
124
                 "so there are no results. The rule is"
125
                 ' "notselected" because it'
126
                 " wasn't a part of the executed profile"
127
                 " and therefore it wasn't evaluated "
128
                 "during the scan.")
129
                .format(notselected_rules))
130 1
        if not notselected_rules and not rules:
131 1
            raise ValueError('404 rule "{}" not found!'.format(self.rule_name))
132 1
        return rules
133
134
    # Function for setting arguments
135
136 1
    def parse_arguments(self, args):
0 ignored issues
show
introduced by
Missing function or method docstring
Loading history...
137 1
        parser = argparse.ArgumentParser(
138
            prog='oval-graph',
139
            description=self._get_message().get('description'))
140 1
        self.prepare_parser(parser)
141 1
        if args is None:
142
            return parser.parse_args()
143 1
        return parser.parse_args(args)
144
145 1
    @staticmethod
146
    def prepare_args_when_user_can_list_in_rules(parser):
0 ignored issues
show
Coding Style Naming introduced by
Method name "prepare_args_when_user_can_list_in_rules" doesn't conform to '[a-z_][a-z0-9_]2,30$' pattern ('[a-z_][a-z0-9_]2,30$' pattern)

This check looks for invalid names for a range of different identifiers.

You can set regular expressions to which the identifiers must conform if the defaults do not match your requirements.

If your project includes a Pylint configuration file, the settings contained in that file take precedence.

To find out more about Pylint, please refer to their site.

Loading history...
introduced by
Missing function or method docstring
Loading history...
147 1
        parser.add_argument(
148
            '--show-failed-rules',
149
            action="store_true",
150
            default=False,
151
            help="Show only FAILED rules")
152 1
        parser.add_argument(
153
            '--show-not-selected-rules',
154
            action="store_true",
155
            default=False,
156
            help="Show notselected rules. These rules will not be visualized.")
157
158 1
    def prepare_parser(self, parser):
0 ignored issues
show
introduced by
Missing function or method docstring
Loading history...
159 1
        parser.add_argument(
160
            '--version',
161
            action='version',
162
            version='%(prog)s ' + __version__)
163 1
        parser.add_argument(
164
            '-a',
165
            '--all',
166
            action="store_true",
167
            default=False,
168
            help="Process all matched rules.")
169 1
        parser.add_argument(
170
            '--hide-passing-tests',
171
            action="store_true",
172
            default=False,
173
            help=(
174
                "Do not display passing tests for better orientation in"
175
                " graphs that contain a large amount of nodes."))
176 1
        parser.add_argument(
177
            '-v',
178
            '--verbose',
179
            action="store_true",
180
            default=False,
181
            help="Displays details about the results of the running command.")
182 1
        parser.add_argument(
183
            '-o',
184
            '--output',
185
            action="store",
186
            default=None,
187
            help='The file where to save output.')
188 1
        parser.add_argument(
189
            "source_filename",
190
            help=self._get_message().get('source_filename'))
191 1
        parser.add_argument(
192
            "rule_id", help=(
193
                "Rule ID to be visualized. A part from the full rule ID"
194
                " a part of the ID or a regular expression can be used."
195
                " If brackets are used in the regular expression "
196
                "the regular expression must be quoted."))
197