-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathtest_trap_cache.py
More file actions
39 lines (29 loc) · 1.14 KB
/
test_trap_cache.py
File metadata and controls
39 lines (29 loc) · 1.14 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import sys
import os.path
import shutil
import unittest
import semmle.populator
from tests import test_utils
class TrapCacheTest(test_utils.ExtractorTest):
def __init__(self, name):
super(TrapCacheTest, self).__init__(name)
self.trap_cache = os.path.abspath(os.path.join(self.here, "cache"))
def tearDown(self):
super(TrapCacheTest, self).tearDown()
shutil.rmtree(self.trap_cache, ignore_errors=True)
def run_extractor(self, *args):
super(TrapCacheTest, self).run_extractor(*(["-c", self.trap_cache] + list(args)))
def create_trap_cache(self):
try:
os.makedirs(self.trap_cache)
except:
if os.path.exists(self.trap_cache):
return
raise
def test_pre_created(self):
self.create_trap_cache()
self.run_extractor("mod1", "package.x", "package.sub.a")
self.check_only_traps_exists_and_clear("mod1", "package/", "x", "sub/", "a")
def test_not_pre_created(self):
self.run_extractor("mod1", "package.x", "package.sub.a")
self.check_only_traps_exists_and_clear("mod1", "package/", "x", "sub/", "a")