-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathtest_file.py
More file actions
30 lines (23 loc) · 809 Bytes
/
test_file.py
File metadata and controls
30 lines (23 loc) · 809 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
26
27
28
29
30
import sys
import os.path
import shutil
import unittest
import subprocess
import semmle.populator
from tests import test_utils
class FileOptionTest(test_utils.ExtractorTest):
def __init__(self, name):
super(FileOptionTest, self).__init__(name)
def test_file(self):
self.run_extractor("-F", "tests/data/mod1.py")
self.check_only_traps_exists_and_clear("mod1")
def test_no_file(self):
try:
self.run_extractor("-F", "this-file-does-not-exist.py")
except subprocess.CalledProcessError as ex:
self.assertEqual(ex.returncode, 1)
def test_no_module(self):
try:
self.run_extractor("this_module_does_not_exist")
except subprocess.CalledProcessError as ex:
self.assertEqual(ex.returncode, 1)