-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathtest_exclude.py
More file actions
25 lines (18 loc) · 902 Bytes
/
test_exclude.py
File metadata and controls
25 lines (18 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import sys
import os.path
import shutil
import unittest
import semmle.populator
from tests import test_utils
class ExtractorExcludeTest(test_utils.ExtractorTest):
def __init__(self, name):
super(ExtractorExcludeTest, self).__init__(name)
def test_simple_exclude(self):
self.run_extractor("-y", "package.sub", "mod1", "package.x", "package.sub.a")
self.check_only_traps_exists_and_clear("mod1", "package/", "x")
def test_simple_exclude_pattern(self):
self.run_extractor("--exclude-pattern", ".*(a|x)", "mod1", "package.x", "package.sub.a", "package.sub.b")
self.check_only_traps_exists_and_clear("mod1", "b", "package/", "sub/")
def test_multiple_exclude(self):
self.run_extractor("-y", "package.sub.x", "mod1", "-y", "package.sub.y", "package.sub.a")
self.check_only_traps_exists_and_clear("mod1", "package/", "sub/", "a")