| Revision 47,
1.1 KB
checked in by xi, 7 years ago
(diff) |
|
Working on the scanner.
|
| Rev | Line | |
|---|
| [39] | 1 | |
|---|
| 2 | import test_appliance |
|---|
| 3 | |
|---|
| [46] | 4 | from yaml.reader import Marker |
|---|
| [39] | 5 | |
|---|
| 6 | class TestMarker(test_appliance.TestAppliance): |
|---|
| 7 | |
|---|
| 8 | def _testMarkers(self, test_name, markers_filename): |
|---|
| 9 | inputs = file(markers_filename, 'rb').read().split('---\n')[1:] |
|---|
| 10 | for input in inputs: |
|---|
| 11 | index = 0 |
|---|
| 12 | line = 0 |
|---|
| 13 | column = 0 |
|---|
| 14 | while input[index] != '*': |
|---|
| 15 | if input[index] == '\n': |
|---|
| 16 | line += 1 |
|---|
| 17 | column = 0 |
|---|
| 18 | else: |
|---|
| 19 | column += 1 |
|---|
| 20 | index += 1 |
|---|
| [45] | 21 | marker = Marker(test_name, line, column, unicode(input), index) |
|---|
| [47] | 22 | snippet = marker.get_snippet(indent=2, max_length=79) |
|---|
| [45] | 23 | #print "INPUT:" |
|---|
| 24 | #print input |
|---|
| 25 | #print "SNIPPET:" |
|---|
| 26 | #print snippet |
|---|
| 27 | self.failUnless(isinstance(snippet, str)) |
|---|
| [47] | 28 | self.failUnlessEqual(snippet.count('\n'), 1) |
|---|
| 29 | data, pointer = snippet.split('\n') |
|---|
| 30 | self.failUnless(len(data) < 82) |
|---|
| [45] | 31 | self.failUnlessEqual(data[len(pointer)-1], '*') |
|---|
| [39] | 32 | |
|---|
| 33 | TestMarker.add_tests('testMarkers', '.markers') |
|---|
| 34 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.