FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
codeql/python/extractor/tests/test_trap_cache.py at main · github/codeql · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
github
/
codeql
Public
Notifications
You must be signed in to change notification settings
Fork
2.1k
Star
10k
Code
Issues
998
Pull requests
460
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
codeql
/
python
/
extractor
/
tests
/
test_trap_cache.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
39 lines (29 loc) · 1.14 KB
Breadcrumbs
codeql
/
python
/
extractor
/
tests
/
test_trap_cache.py
Copy path
File metadata and controls
39 lines (29 loc) · 1.14 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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"
)
Back
|
FazBrowse Home
|
New Git URL