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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
# Copyright 2013 Lars Wirzenius
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# =*= License: GPL-3+ =*=
import unittest
import yarnlib
class BlockParserTests(unittest.TestCase):
def setUp(self):
self.parser = yarnlib.BlockParser()
def test_is_initially_empty(self):
self.assertEqual(self.parser.scenarios, [])
self.assertEqual(self.parser.implementations, [])
def test_skips_examples(self):
self.parser.parse_blocks(['EXAMPLE foo', 'bar'])
self.assertEqual(len(self.parser.scenarios), 0)
def test_parses_simple_elements(self):
self.parser.parse_blocks(
['SCENARIO foo', 'ASSUMING something', 'GIVEN bar',
'WHEN foobar\nTHEN yoyo\nFINALLY yay\nAND yeehaa'])
self.assertEqual(len(self.parser.scenarios), 1)
self.assertEqual(len(self.parser.implementations), 0)
scenario = self.parser.scenarios[0]
self.assertEqual(scenario.name, 'foo')
self.assertEqual(len(scenario.steps), 6)
self.assertEqual(scenario.steps[0].what, 'ASSUMING')
self.assertEqual(scenario.steps[0].text, 'something')
self.assertEqual(scenario.steps[1].what, 'GIVEN')
self.assertEqual(scenario.steps[1].text, 'bar')
self.assertEqual(scenario.steps[2].what, 'WHEN')
self.assertEqual(scenario.steps[2].text, 'foobar')
self.assertEqual(scenario.steps[3].what, 'THEN')
self.assertEqual(scenario.steps[3].text, 'yoyo')
self.assertEqual(scenario.steps[4].what, 'FINALLY')
self.assertEqual(scenario.steps[4].text, 'yay')
self.assertEqual(scenario.steps[5].what, 'FINALLY')
self.assertEqual(scenario.steps[5].text, 'yeehaa')
def test_handles_continuation_line(self):
self.parser.parse_blocks(['SCENARIO foo', 'GIVEN foo', '... and bar'])
scenario = self.parser.scenarios[0]
self.assertEqual(len(self.parser.scenarios), 1)
self.assertEqual(scenario.name, 'foo')
self.assertEqual(scenario.steps[0].what, 'GIVEN')
self.assertEqual(scenario.steps[0].text, 'foo and bar')
def test_normalises_whitespace(self):
self.parser.parse_blocks(['SCENARIO foo bar '])
self.assertEqual(self.parser.scenarios[0].name, 'foo bar')
def test_handles_empty_line(self):
self.parser.parse_blocks(['SCENARIO foo\n\nGIVEN bar\nTHEN foobar'])
self.assertEqual(len(self.parser.scenarios), 1)
def test_raises_error_for_unknown_step(self):
self.assertRaises(
yarnlib.BlockError,
self.parser.parse_blocks,
['SCENARIO foo\nblah'])
def test_raises_error_for_step_outside_scenario(self):
self.assertRaises(
yarnlib.BlockError,
self.parser.parse_blocks,
['GIVEN foo'])
def test_raises_error_for_AND_before_scenario(self):
self.assertRaises(
yarnlib.BlockError,
self.parser.parse_blocks,
['AND bar'])
def test_raises_error_for_AND_before_step(self):
self.assertRaises(
yarnlib.BlockError,
self.parser.parse_blocks,
['SCENARIO foo\nAND bar'])
def test_parses_implements_in_a_block_by_itself(self):
self.parser.parse_blocks(['IMPLEMENTS GIVEN foo\ntrue'])
impls = self.parser.implementations
self.assertEqual(len(impls), 1)
self.assertEqual(impls[0].what, 'GIVEN')
self.assertEqual(impls[0].regexp, 'foo')
self.assertEqual(impls[0].shell, 'true')
def test_parses_implements_with_empty_shell_text(self):
self.parser.parse_blocks(['IMPLEMENTS GIVEN foo'])
impls = self.parser.implementations
self.assertEqual(len(impls), 1)
self.assertEqual(impls[0].what, 'GIVEN')
self.assertEqual(impls[0].regexp, 'foo')
self.assertEqual(impls[0].shell, '')
def test_parses_two_implements_in_a_code_block(self):
self.parser.parse_blocks(
['IMPLEMENTS GIVEN foo\ntrue\nIMPLEMENTS WHEN bar\ncat /dev/null'])
impls = self.parser.implementations
self.assertEqual(len(impls), 2)
self.assertEqual(impls[0].what, 'GIVEN')
self.assertEqual(impls[0].regexp, 'foo')
self.assertEqual(impls[0].shell, 'true')
self.assertEqual(impls[1].what, 'WHEN')
self.assertEqual(impls[1].regexp, 'bar')
self.assertEqual(impls[1].shell, 'cat /dev/null')
def test_raises_error_for_implements_with_no_args(self):
self.assertRaises(
yarnlib.BlockError,
self.parser.parse_blocks,
['IMPLEMENTS'])
def test_raises_error_for_implements_with_one_args(self):
self.assertRaises(
yarnlib.BlockError,
self.parser.parse_blocks,
['IMPLEMENTS GIVEN'])
def test_raises_error_for_implements_with_first_args_not_a_keyword(self):
self.assertRaises(
yarnlib.BlockError,
self.parser.parse_blocks,
['IMPLEMENTS foo'])
|