-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
unit test for new iteration API by section
code cleaning in iter_record_objects_by_section function GitHub issue - #12
- Loading branch information
1 parent
e916063
commit 4ac056a
Showing
2 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import unittest | ||
from unittest.mock import patch, MagicMock | ||
from trlc.ast import Symbol_Table | ||
|
||
class TestRecordObject: | ||
def __init__(self, location, section): | ||
self.location = location | ||
self.section = section | ||
|
||
class TestSection: | ||
def __init__(self, name): | ||
self.name = name | ||
|
||
class TestIterRecordObjectsBySection(unittest.TestCase): | ||
|
||
@patch("trlc.ast.Symbol_Table.iter_record_objects") | ||
def test_iter_record_objects_by_section(self, mock_iter_record_objects): | ||
mock_location1 = MagicMock(file_name = 'file1') | ||
mock_section1 = TestSection('section1') | ||
mock_section2 = TestSection('section2') | ||
mock_location2 = MagicMock(file_name = 'file2') | ||
record1 = TestRecordObject(mock_location1, [mock_section1, mock_section2]) | ||
record2 = TestRecordObject(mock_location2, []) | ||
mock_iter_record_objects.return_value = [record1, record2] | ||
|
||
results = list(Symbol_Table().iter_record_objects_by_section()) | ||
|
||
expected_results = [ | ||
'file1', | ||
('section1', 0), | ||
('section2', 1), | ||
(record1, 1), | ||
'file2', | ||
(record2, 0) | ||
] | ||
|
||
self.assertEqual(results, expected_results) | ||
|
||
if __name__ == '__main__': | ||
unittest.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters