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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590
|
#-*- coding: UTF-8 -*-
from __future__ import absolute_import
from .tools import eq_, assert_raises, raises
from behave import i18n, model, parser
class Common(object):
def compare_steps(self, steps, expected):
have = [(s.step_type, s.keyword, s.name, s.text, s.table) for s in steps]
eq_(have, expected)
class TestParser(Common):
def test_parses_feature_name(self):
feature = parser.parse_feature(u"Feature: Stuff\n")
eq_(feature.name, "Stuff")
def test_parses_feature_name_without_newline(self):
feature = parser.parse_feature(u"Feature: Stuff")
eq_(feature.name, "Stuff")
def test_parses_feature_description(self):
doc = u"""
Feature: Stuff
In order to thing
As an entity
I want to do stuff
""".strip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
eq_(feature.description,
["In order to thing", "As an entity", "I want to do stuff"])
def test_parses_feature_with_a_tag(self):
doc = u"""
@foo
Feature: Stuff
In order to thing
As an entity
I want to do stuff
""".strip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
eq_(feature.description,
["In order to thing", "As an entity", "I want to do stuff"])
eq_(feature.tags, [model.Tag(u'foo', 1)])
def test_parses_feature_with_more_tags(self):
doc = u"""
@foo @bar @baz @qux @winkle_pickers @number8
Feature: Stuff
In order to thing
As an entity
I want to do stuff
""".strip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
eq_(feature.description,
["In order to thing", "As an entity", "I want to do stuff"])
eq_(feature.tags, [model.Tag(name, 1)
for name in (u'foo', u'bar', u'baz', u'qux', u'winkle_pickers', u'number8')])
def test_parses_feature_with_a_tag_and_comment(self):
doc = u"""
@foo # Comment: ...
Feature: Stuff
In order to thing
As an entity
I want to do stuff
""".strip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
eq_(feature.description,
["In order to thing", "As an entity", "I want to do stuff"])
eq_(feature.tags, [model.Tag(u'foo', 1)])
def test_parses_feature_with_more_tags_and_comment(self):
doc = u"""
@foo @bar @baz @qux @winkle_pickers # Comment: @number8
Feature: Stuff
In order to thing
As an entity
I want to do stuff
""".strip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
eq_(feature.description,
["In order to thing", "As an entity", "I want to do stuff"])
eq_(feature.tags, [model.Tag(name, 1)
for name in (u'foo', u'bar', u'baz', u'qux', u'winkle_pickers')])
# -- NOT A TAG: u'number8'
def test_parses_feature_with_background(self):
doc = u"""
Feature: Stuff
Background:
Given there is stuff
When I do stuff
Then stuff happens
""".lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(feature.background)
self.compare_steps(feature.background.steps, [
('given', 'Given', 'there is stuff', None, None),
('when', 'When', 'I do stuff', None, None),
('then', 'Then', 'stuff happens', None, None),
])
def test_parses_feature_with_description_and_background(self):
doc = u"""
Feature: Stuff
This... is... STUFF!
Background:
Given there is stuff
When I do stuff
Then stuff happens
""".lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
eq_(feature.description, ["This... is... STUFF!"])
assert(feature.background)
self.compare_steps(feature.background.steps, [
('given', 'Given', 'there is stuff', None, None),
('when', 'When', 'I do stuff', None, None),
('then', 'Then', 'stuff happens', None, None),
])
def test_parses_feature_with_a_scenario(self):
doc = u"""
Feature: Stuff
Scenario: Doing stuff
Given there is stuff
When I do stuff
Then stuff happens
""".lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'Doing stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'there is stuff', None, None),
('when', 'When', 'I do stuff', None, None),
('then', 'Then', 'stuff happens', None, None),
])
def test_parses_lowercase_step_keywords(self):
doc = u"""
Feature: Stuff
Scenario: Doing stuff
giVeN there is stuff
when I do stuff
tHEn stuff happens
""".lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'Doing stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'there is stuff', None, None),
('when', 'When', 'I do stuff', None, None),
('then', 'Then', 'stuff happens', None, None),
])
def test_parses_ja_keywords(self):
doc = u"""
機能: Stuff
シナリオ: Doing stuff
前提there is stuff
もしI do stuff
ならばstuff happens
""".lstrip()
feature = parser.parse_feature(doc, language='ja')
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'Doing stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', u'前提', 'there is stuff', None, None),
('when', u'もし', 'I do stuff', None, None),
('then', u'ならば', 'stuff happens', None, None),
])
def test_parses_feature_with_description_and_background_and_scenario(self):
doc = u"""
Feature: Stuff
Oh my god, it's full of stuff...
Background:
Given I found some stuff
Scenario: Doing stuff
Given there is stuff
When I do stuff
Then stuff happens
""".lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
eq_(feature.description, ["Oh my god, it's full of stuff..."])
assert(feature.background)
self.compare_steps(feature.background.steps, [
('given', 'Given', 'I found some stuff', None, None),
])
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'Doing stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'there is stuff', None, None),
('when', 'When', 'I do stuff', None, None),
('then', 'Then', 'stuff happens', None, None),
])
def test_parses_feature_with_multiple_scenarios(self):
doc = u"""
Feature: Stuff
Scenario: Doing stuff
Given there is stuff
When I do stuff
Then stuff happens
Scenario: Doing other stuff
When stuff happens
Then I am stuffed
Scenario: Doing different stuff
Given stuff
Then who gives a stuff
""".lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 3)
eq_(feature.scenarios[0].name, 'Doing stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'there is stuff', None, None),
('when', 'When', 'I do stuff', None, None),
('then', 'Then', 'stuff happens', None, None),
])
eq_(feature.scenarios[1].name, 'Doing other stuff')
self.compare_steps(feature.scenarios[1].steps, [
('when', 'When', 'stuff happens', None, None),
('then', 'Then', 'I am stuffed', None, None),
])
eq_(feature.scenarios[2].name, 'Doing different stuff')
self.compare_steps(feature.scenarios[2].steps, [
('given', 'Given', 'stuff', None, None),
('then', 'Then', 'who gives a stuff', None, None),
])
def test_parses_feature_with_multiple_scenarios_with_tags(self):
doc = u"""
Feature: Stuff
Scenario: Doing stuff
Given there is stuff
When I do stuff
Then stuff happens
@one_tag
Scenario: Doing other stuff
When stuff happens
Then I am stuffed
@lots @of @tags
Scenario: Doing different stuff
Given stuff
Then who gives a stuff
""".lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 3)
eq_(feature.scenarios[0].name, 'Doing stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'there is stuff', None, None),
('when', 'When', 'I do stuff', None, None),
('then', 'Then', 'stuff happens', None, None),
])
eq_(feature.scenarios[1].name, 'Doing other stuff')
eq_(feature.scenarios[1].tags, [model.Tag(u'one_tag', 1)])
self.compare_steps(feature.scenarios[1].steps, [
('when', 'When', 'stuff happens', None, None),
('then', 'Then', 'I am stuffed', None, None),
])
eq_(feature.scenarios[2].name, 'Doing different stuff')
eq_(feature.scenarios[2].tags, [model.Tag(n, 1) for n in (u'lots', u'of', u'tags')])
self.compare_steps(feature.scenarios[2].steps, [
('given', 'Given', 'stuff', None, None),
('then', 'Then', 'who gives a stuff', None, None),
])
def test_parses_feature_with_multiple_scenarios_and_other_bits(self):
doc = u"""
Feature: Stuff
Stuffing
Background:
Given you're all stuffed
Scenario: Doing stuff
Given there is stuff
When I do stuff
Then stuff happens
Scenario: Doing other stuff
When stuff happens
Then I am stuffed
Scenario: Doing different stuff
Given stuff
Then who gives a stuff
""".lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
eq_(feature.description, ["Stuffing"])
assert(feature.background)
self.compare_steps(feature.background.steps, [
('given', 'Given', "you're all stuffed", None, None)
])
assert(len(feature.scenarios) == 3)
eq_(feature.scenarios[0].name, 'Doing stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'there is stuff', None, None),
('when', 'When', 'I do stuff', None, None),
('then', 'Then', 'stuff happens', None, None),
])
eq_(feature.scenarios[1].name, 'Doing other stuff')
self.compare_steps(feature.scenarios[1].steps, [
('when', 'When', 'stuff happens', None, None),
('then', 'Then', 'I am stuffed', None, None),
])
eq_(feature.scenarios[2].name, 'Doing different stuff')
self.compare_steps(feature.scenarios[2].steps, [
('given', 'Given', 'stuff', None, None),
('then', 'Then', 'who gives a stuff', None, None),
])
def test_parses_feature_with_a_scenario_with_and_and_but(self):
doc = u"""
Feature: Stuff
Scenario: Doing stuff
Given there is stuff
And some other stuff
When I do stuff
Then stuff happens
But not the bad stuff
""".lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'Doing stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'there is stuff', None, None),
('given', 'And', 'some other stuff', None, None),
('when', 'When', 'I do stuff', None, None),
('then', 'Then', 'stuff happens', None, None),
('then', 'But', 'not the bad stuff', None, None),
])
def test_parses_feature_with_a_step_with_a_string_argument(self):
doc = u'''
Feature: Stuff
Scenario: Doing stuff
Given there is stuff:
"""
So
Much
Stuff
"""
Then stuff happens
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'Doing stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'there is stuff', "So\nMuch\nStuff", None),
('then', 'Then', 'stuff happens', None, None),
])
def test_parses_string_argument_correctly_handle_whitespace(self):
doc = u'''
Feature: Stuff
Scenario: Doing stuff
Given there is stuff:
"""
So
Much
Stuff
Has
Indents
"""
Then stuff happens
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'Doing stuff')
string = "So\n Much\n Stuff\n Has\nIndents"
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'there is stuff', string, None),
('then', 'Then', 'stuff happens', None, None),
])
def test_parses_feature_with_a_step_with_a_string_with_blank_lines(self):
doc = u'''
Feature: Stuff
Scenario: Doing stuff
Given there is stuff:
"""
So
Much
Stuff
"""
Then stuff happens
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'Doing stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'there is stuff', "So\n\nMuch\n\n\nStuff", None),
('then', 'Then', 'stuff happens', None, None),
])
# MORE-JE-ADDED:
def test_parses_string_argument_without_stripping_empty_lines(self):
# -- ISSUE 44: Parser removes comments in multiline text string.
doc = u'''
Feature: Multiline
Scenario: Multiline Text with Comments
Given a multiline argument with:
"""
"""
And a multiline argument with:
"""
Alpha.
Omega.
"""
Then empty middle lines are not stripped
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Multiline")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, "Multiline Text with Comments")
text1 = ""
text2 = "Alpha.\n\nOmega."
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'a multiline argument with', text1, None),
('given', 'And', 'a multiline argument with', text2, None),
('then', 'Then', 'empty middle lines are not stripped', None, None),
])
def test_parses_feature_with_a_step_with_a_string_with_comments(self):
doc = u'''
Feature: Stuff
Scenario: Doing stuff
Given there is stuff:
"""
So
Much
# Derp
"""
Then stuff happens
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'Doing stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'there is stuff', "So\nMuch\n# Derp",
None),
('then', 'Then', 'stuff happens', None, None),
])
def test_parses_feature_with_a_step_with_a_table_argument(self):
doc = u'''
Feature: Stuff
Scenario: Doing stuff
Given we classify stuff:
| type of stuff | awesomeness | ridiculousness |
| fluffy | large | frequent |
| lint | low | high |
| green | variable | awkward |
Then stuff is in buckets
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'Doing stuff')
table = model.Table(
[u'type of stuff', u'awesomeness', u'ridiculousness'],
0,
[
[u'fluffy', u'large', u'frequent'],
[u'lint', u'low', u'high'],
[u'green', u'variable', u'awkward'],
]
)
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'we classify stuff', None, table),
('then', 'Then', 'stuff is in buckets', None, None),
])
def test_parses_feature_with_table_and_escaped_pipe_in_cell_values(self):
doc = u'''
Feature:
Scenario:
Given we have special cell values:
| name | value |
| alice | one\|two |
| bob |\|one |
| charly | one\||
| doro | one\|two\|three\|four |
'''.lstrip()
feature = parser.parse_feature(doc)
assert(len(feature.scenarios) == 1)
table = model.Table(
[u"name", u"value"],
0,
[
[u"alice", u"one|two"],
[u"bob", u"|one"],
[u"charly", u"one|"],
[u"doro", u"one|two|three|four"],
]
)
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'we have special cell values', None, table),
])
def test_parses_feature_with_a_scenario_outline(self):
doc = u'''
Feature: Stuff
Scenario Outline: Doing all sorts of stuff
Given we have <Stuff>
When we do stuff
Then we have <Things>
Examples: Some stuff
| Stuff | Things |
| wool | felt |
| cotton | thread |
| wood | paper |
| explosives | hilarity |
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'Doing all sorts of stuff')
table = model.Table(
[u'Stuff', u'Things'],
0,
[
[u'wool', u'felt'],
[u'cotton', u'thread'],
[u'wood', u'paper'],
[u'explosives', u'hilarity'],
]
)
eq_(feature.scenarios[0].examples[0].name, 'Some stuff')
eq_(feature.scenarios[0].examples[0].table, table)
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'we have <Stuff>', None, None),
('when', 'When', 'we do stuff', None, None),
('then', 'Then', 'we have <Things>', None, None),
])
def test_parses_feature_with_a_scenario_outline_with_multiple_examples(self):
doc = u'''
Feature: Stuff
Scenario Outline: Doing all sorts of stuff
Given we have <Stuff>
When we do stuff
Then we have <Things>
Examples: Some stuff
| Stuff | Things |
| wool | felt |
| cotton | thread |
Examples: Some other stuff
| Stuff | Things |
| wood | paper |
| explosives | hilarity |
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'Doing all sorts of stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'we have <Stuff>', None, None),
('when', 'When', 'we do stuff', None, None),
('then', 'Then', 'we have <Things>', None, None),
])
table = model.Table(
[u'Stuff', u'Things'],
0,
[
[u'wool', u'felt'],
[u'cotton', u'thread'],
]
)
eq_(feature.scenarios[0].examples[0].name, 'Some stuff')
eq_(feature.scenarios[0].examples[0].table, table)
table = model.Table(
[u'Stuff', u'Things'],
0,
[
[u'wood', u'paper'],
[u'explosives', u'hilarity'],
]
)
eq_(feature.scenarios[0].examples[1].name, 'Some other stuff')
eq_(feature.scenarios[0].examples[1].table, table)
def test_parses_feature_with_a_scenario_outline_with_tags(self):
doc = u'''
Feature: Stuff
@stuff @derp
Scenario Outline: Doing all sorts of stuff
Given we have <Stuff>
When we do stuff
Then we have <Things>
Examples: Some stuff
| Stuff | Things |
| wool | felt |
| cotton | thread |
| wood | paper |
| explosives | hilarity |
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'Doing all sorts of stuff')
eq_(feature.scenarios[0].tags, [model.Tag(u'stuff', 1), model.Tag(u'derp', 1)])
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'we have <Stuff>', None, None),
('when', 'When', 'we do stuff', None, None),
('then', 'Then', 'we have <Things>', None, None),
])
table = model.Table(
[u'Stuff', u'Things'],
0,
[
[u'wool', u'felt'],
[u'cotton', u'thread'],
[u'wood', u'paper'],
[u'explosives', u'hilarity'],
]
)
eq_(feature.scenarios[0].examples[0].name, 'Some stuff')
eq_(feature.scenarios[0].examples[0].table, table)
def test_parses_scenario_outline_with_tagged_examples1(self):
# -- CASE: Examples with 1 tag-line (= 1 tag)
doc = u'''
Feature: Alice
@foo
Scenario Outline: Bob
Given we have <Stuff>
@bar
Examples: Charly
| Stuff | Things |
| wool | felt |
| cotton | thread |
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Alice")
assert(len(feature.scenarios) == 1)
scenario_outline = feature.scenarios[0]
eq_(scenario_outline.name, "Bob")
eq_(scenario_outline.tags, [model.Tag(u"foo", 1)])
self.compare_steps(scenario_outline.steps, [
("given", "Given", "we have <Stuff>", None, None),
])
table = model.Table(
[u"Stuff", u"Things"], 0,
[
[u"wool", u"felt"],
[u"cotton", u"thread"],
]
)
eq_(scenario_outline.examples[0].name, "Charly")
eq_(scenario_outline.examples[0].table, table)
eq_(scenario_outline.examples[0].tags, [model.Tag(u"bar", 1)])
# -- ScenarioOutline.scenarios:
# Inherit tags from ScenarioOutline and Examples element.
eq_(len(scenario_outline.scenarios), 2)
expected_tags = [model.Tag(u"foo", 1), model.Tag(u"bar", 1)]
eq_(set(scenario_outline.scenarios[0].tags), set(expected_tags))
eq_(set(scenario_outline.scenarios[1].tags), set(expected_tags))
def test_parses_scenario_outline_with_tagged_examples2(self):
# -- CASE: Examples with multiple tag-lines (= 2 tag-lines)
doc = u'''
Feature: Alice
@foo
Scenario Outline: Bob
Given we have <Stuff>
@bar
@baz
Examples: Charly
| Stuff | Things |
| wool | felt |
| cotton | thread |
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Alice")
assert(len(feature.scenarios) == 1)
scenario_outline = feature.scenarios[0]
eq_(scenario_outline.name, "Bob")
eq_(scenario_outline.tags, [model.Tag(u"foo", 1)])
self.compare_steps(scenario_outline.steps, [
("given", "Given", "we have <Stuff>", None, None),
])
table = model.Table(
[u"Stuff", u"Things"], 0,
[
[u"wool", u"felt"],
[u"cotton", u"thread"],
]
)
eq_(scenario_outline.examples[0].name, "Charly")
eq_(scenario_outline.examples[0].table, table)
expected_tags = [model.Tag(u"bar", 1), model.Tag(u"baz", 1)]
eq_(scenario_outline.examples[0].tags, expected_tags)
# -- ScenarioOutline.scenarios:
# Inherit tags from ScenarioOutline and Examples element.
eq_(len(scenario_outline.scenarios), 2)
expected_tags = [
model.Tag(u"foo", 1),
model.Tag(u"bar", 1),
model.Tag(u"baz", 1)
]
eq_(set(scenario_outline.scenarios[0].tags), set(expected_tags))
eq_(set(scenario_outline.scenarios[1].tags), set(expected_tags))
def test_parses_feature_with_the_lot(self):
doc = u'''
# This one's got comments too.
@derp
Feature: Stuff
In order to test my parser
As a test runner
I want to run tests
# A møøse once bit my sister
Background:
Given this is a test
@fred
Scenario: Testing stuff
Given we are testing
And this is only a test
But this is an important test
When we test with a multiline string:
"""
Yarr, my hovercraft be full of stuff.
Also, I be feelin' this pirate schtick be a mite overdone, me hearties.
Also: rum.
"""
Then we want it to work
#These comments are everywhere man
Scenario Outline: Gosh this is long
Given this is <length>
Then we want it to be <width>
But not <height>
Examples: Initial
| length | width | height |
# I don't know why this one is here
| 1 | 2 | 3 |
| 4 | 5 | 6 |
Examples: Subsequent
| length | width | height |
| 7 | 8 | 9 |
Scenario: This one doesn't have a tag
Given we don't have a tag
Then we don't really mind
@stuff @derp
Scenario Outline: Doing all sorts of stuff
Given we have <Stuff>
When we do stuff with a table:
| a | b | c | d | e |
| 1 | 2 | 3 | 4 | 5 |
# I can see a comment line from here
| 6 | 7 | 8 | 9 | 10 |
Then we have <Things>
Examples: Some stuff
| Stuff | Things |
| wool | felt |
| cotton | thread |
| wood | paper |
| explosives | hilarity |
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Stuff")
eq_(feature.tags, [model.Tag(u'derp', 1)])
eq_(feature.description, ['In order to test my parser',
'As a test runner',
'I want to run tests'])
assert(feature.background)
self.compare_steps(feature.background.steps, [
('given', 'Given', 'this is a test', None, None)
])
assert(len(feature.scenarios) == 4)
eq_(feature.scenarios[0].name, 'Testing stuff')
eq_(feature.scenarios[0].tags, [model.Tag(u'fred', 1)])
string = '\n'.join([
'Yarr, my hovercraft be full of stuff.',
"Also, I be feelin' this pirate schtick be a mite overdone, " + \
"me hearties.",
' Also: rum.'
])
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'we are testing', None, None),
('given', 'And', 'this is only a test', None, None),
('given', 'But', 'this is an important test', None, None),
('when', 'When', 'we test with a multiline string', string, None),
('then', 'Then', 'we want it to work', None, None),
])
eq_(feature.scenarios[1].name, 'Gosh this is long')
eq_(feature.scenarios[1].tags, [])
table = model.Table(
[u'length', u'width', u'height'],
0,
[
[u'1', u'2', u'3'],
[u'4', u'5', u'6'],
]
)
eq_(feature.scenarios[1].examples[0].name, 'Initial')
eq_(feature.scenarios[1].examples[0].table, table)
table = model.Table(
[u'length', u'width', u'height'],
0,
[
[u'7', u'8', u'9'],
]
)
eq_(feature.scenarios[1].examples[1].name, 'Subsequent')
eq_(feature.scenarios[1].examples[1].table, table)
self.compare_steps(feature.scenarios[1].steps, [
('given', 'Given', 'this is <length>', None, None),
('then', 'Then', 'we want it to be <width>', None, None),
('then', 'But', 'not <height>', None, None),
])
eq_(feature.scenarios[2].name, "This one doesn't have a tag")
eq_(feature.scenarios[2].tags, [])
self.compare_steps(feature.scenarios[2].steps, [
('given', 'Given', "we don't have a tag", None, None),
('then', 'Then', "we don't really mind", None, None),
])
table = model.Table(
[u'Stuff', u'Things'],
0,
[
[u'wool', u'felt'],
[u'cotton', u'thread'],
[u'wood', u'paper'],
[u'explosives', u'hilarity'],
]
)
eq_(feature.scenarios[3].name, 'Doing all sorts of stuff')
eq_(feature.scenarios[3].tags, [model.Tag(u'stuff', 1), model.Tag(u'derp', 1)])
eq_(feature.scenarios[3].examples[0].name, 'Some stuff')
eq_(feature.scenarios[3].examples[0].table, table)
table = model.Table(
[u'a', u'b', u'c', u'd', u'e'],
0,
[
[u'1', u'2', u'3', u'4', u'5'],
[u'6', u'7', u'8', u'9', u'10'],
]
)
self.compare_steps(feature.scenarios[3].steps, [
('given', 'Given', 'we have <Stuff>', None, None),
('when', 'When', 'we do stuff with a table', None, table),
('then', 'Then', 'we have <Things>', None, None),
])
def test_fails_to_parse_when_and_is_out_of_order(self):
doc = u"""
Feature: Stuff
Scenario: Failing at stuff
And we should fail
""".lstrip()
assert_raises(parser.ParserError, parser.parse_feature, doc)
def test_fails_to_parse_when_but_is_out_of_order(self):
doc = u"""
Feature: Stuff
Scenario: Failing at stuff
But we shall fail
""".lstrip()
assert_raises(parser.ParserError, parser.parse_feature, doc)
def test_fails_to_parse_when_examples_is_in_the_wrong_place(self):
doc = u"""
Feature: Stuff
Scenario: Failing at stuff
But we shall fail
Examples: Failure
| Fail | Wheel|
""".lstrip()
assert_raises(parser.ParserError, parser.parse_feature, doc)
class TestForeign(Common):
def test_first_line_comment_sets_language(self):
doc = u"""
# language: fr
Fonctionnalit\xe9: testing stuff
Oh my god, it's full of stuff...
"""
feature = parser.parse_feature(doc)
eq_(feature.name, "testing stuff")
eq_(feature.description, ["Oh my god, it's full of stuff..."])
def test_multiple_language_comments(self):
# -- LAST LANGUAGE is used.
doc = u"""
# language: en
# language: fr
Fonctionnalit\xe9: testing stuff
Oh my god, it's full of stuff...
"""
feature = parser.parse_feature(doc)
eq_(feature.name, "testing stuff")
eq_(feature.description, ["Oh my god, it's full of stuff..."])
def test_language_comment_wins_over_commandline(self):
doc = u"""
# language: fr
Fonctionnalit\xe9: testing stuff
Oh my god, it's full of stuff...
"""
feature = parser.parse_feature(doc, language="de")
eq_(feature.name, "testing stuff")
eq_(feature.description, ["Oh my god, it's full of stuff..."])
def test_whitespace_before_first_line_comment_still_sets_language(self):
doc = u"""
# language: cs
Po\u017eadavek: testing stuff
Oh my god, it's full of stuff...
"""
feature = parser.parse_feature(doc)
eq_(feature.name, "testing stuff")
eq_(feature.description, ["Oh my god, it's full of stuff..."])
def test_anything_before_language_comment_makes_it_not_count(self):
doc = u"""
@wombles
# language: cy-GB
Arwedd: testing stuff
Oh my god, it's full of stuff...
"""
assert_raises(parser.ParserError, parser.parse_feature, doc)
def test_defaults_to_DEFAULT_LANGUAGE(self):
feature_kwd = i18n.languages[parser.DEFAULT_LANGUAGE]['feature'][0]
doc = u"""
@wombles
# language: cs
%s: testing stuff
Oh my god, it's full of stuff...
""" % feature_kwd
feature = parser.parse_feature(doc)
eq_(feature.name, "testing stuff")
eq_(feature.description, ["Oh my god, it's full of stuff..."])
def test_whitespace_in_the_language_comment_is_flexible_1(self):
doc = u"""
#language:da
Egenskab: testing stuff
Oh my god, it's full of stuff...
"""
feature = parser.parse_feature(doc)
eq_(feature.name, "testing stuff")
eq_(feature.description, ["Oh my god, it's full of stuff..."])
def test_whitespace_in_the_language_comment_is_flexible_2(self):
doc = u"""
# language:de
Funktionalit\xe4t: testing stuff
Oh my god, it's full of stuff...
"""
feature = parser.parse_feature(doc)
eq_(feature.name, "testing stuff")
eq_(feature.description, ["Oh my god, it's full of stuff..."])
def test_whitespace_in_the_language_comment_is_flexible_3(self):
doc = u"""
#language: en-lol
OH HAI: testing stuff
Oh my god, it's full of stuff...
"""
feature = parser.parse_feature(doc)
eq_(feature.name, "testing stuff")
eq_(feature.description, ["Oh my god, it's full of stuff..."])
def test_whitespace_in_the_language_comment_is_flexible_4(self):
doc = u"""
# language: lv
F\u012b\u010da: testing stuff
Oh my god, it's full of stuff...
"""
feature = parser.parse_feature(doc)
eq_(feature.name, "testing stuff")
eq_(feature.description, ["Oh my god, it's full of stuff..."])
def test_parses_french(self):
doc = u"""
Fonctionnalit\xe9: testing stuff
Oh my god, it's full of stuff...
Contexte:
Soit I found some stuff
Sc\xe9nario: test stuff
Soit I am testing stuff
Alors it should work
Sc\xe9nario: test more stuff
Soit I am testing stuff
Alors it will work
""".lstrip()
feature = parser.parse_feature(doc, 'fr')
eq_(feature.name, "testing stuff")
eq_(feature.description, ["Oh my god, it's full of stuff..."])
assert(feature.background)
self.compare_steps(feature.background.steps, [
('given', 'Soit', 'I found some stuff', None, None),
])
assert(len(feature.scenarios) == 2)
eq_(feature.scenarios[0].name, 'test stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Soit', 'I am testing stuff', None, None),
('then', 'Alors', 'it should work', None, None),
])
def test_parses_french_multi_word(self):
doc = u"""
Fonctionnalit\xe9: testing stuff
Oh my god, it's full of stuff...
Sc\xe9nario: test stuff
Etant donn\xe9 I am testing stuff
Alors it should work
""".lstrip()
feature = parser.parse_feature(doc, 'fr')
eq_(feature.name, "testing stuff")
eq_(feature.description, ["Oh my god, it's full of stuff..."])
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, 'test stuff')
self.compare_steps(feature.scenarios[0].steps, [
('given', u'Etant donn\xe9', 'I am testing stuff', None, None),
('then', 'Alors', 'it should work', None, None),
])
test_parses_french_multi_word.go = 1
def test_properly_handles_whitespace_on_keywords_that_do_not_want_it(self):
doc = u"""
# language: zh-TW
\u529f\u80fd: I have no idea what I'm saying
\u5834\u666f: No clue whatsoever
\u5047\u8a2dI've got no idea
\u7576I say things
\u800c\u4e14People don't understand
\u90a3\u9ebcPeople should laugh
\u4f46\u662fI should take it well
"""
feature = parser.parse_feature(doc)
eq_(feature.name, "I have no idea what I'm saying")
eq_(len(feature.scenarios), 1)
eq_(feature.scenarios[0].name, 'No clue whatsoever')
self.compare_steps(feature.scenarios[0].steps, [
('given', u'\u5047\u8a2d', "I've got no idea", None, None),
('when', u'\u7576', 'I say things', None, None),
('when', u'\u800c\u4e14', "People don't understand", None, None),
('then', u'\u90a3\u9ebc', "People should laugh", None, None),
('then', u'\u4f46\u662f', "I should take it well", None, None),
])
class TestParser4ScenarioDescription(Common):
def test_parse_scenario_description(self):
doc = u'''
Feature: Scenario Description
Scenario: With scenario description
First line of scenario description.
Second line of scenario description.
Third line of scenario description (after an empty line).
Given we have stuff
When we do stuff
Then we have things
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Scenario Description")
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, "With scenario description")
eq_(feature.scenarios[0].tags, [])
eq_(feature.scenarios[0].description, [
"First line of scenario description.",
"Second line of scenario description.",
"Third line of scenario description (after an empty line).",
])
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'we have stuff', None, None),
('when', 'When', 'we do stuff', None, None),
('then', 'Then', 'we have things', None, None),
])
def test_parse_scenario_with_description_but_without_steps(self):
doc = u'''
Feature: Scenario Description
Scenario: With description but without steps
First line of scenario description.
Second line of scenario description.
Scenario: Another one
Given we have stuff
When we do stuff
Then we have things
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Scenario Description")
assert(len(feature.scenarios) == 2)
eq_(feature.scenarios[0].name, "With description but without steps")
eq_(feature.scenarios[0].tags, [])
eq_(feature.scenarios[0].description, [
"First line of scenario description.",
"Second line of scenario description.",
])
eq_(feature.scenarios[0].steps, [])
eq_(feature.scenarios[1].name, "Another one")
eq_(feature.scenarios[1].tags, [])
eq_(feature.scenarios[1].description, [])
self.compare_steps(feature.scenarios[1].steps, [
('given', 'Given', 'we have stuff', None, None),
('when', 'When', 'we do stuff', None, None),
('then', 'Then', 'we have things', None, None),
])
def test_parse_scenario_with_description_but_without_steps_followed_by_scenario_with_tags(self):
doc = u'''
Feature: Scenario Description
Scenario: With description but without steps
First line of scenario description.
Second line of scenario description.
@foo @bar
Scenario: Another one
Given we have stuff
When we do stuff
Then we have things
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Scenario Description")
assert(len(feature.scenarios) == 2)
eq_(feature.scenarios[0].name, "With description but without steps")
eq_(feature.scenarios[0].tags, [])
eq_(feature.scenarios[0].description, [
"First line of scenario description.",
"Second line of scenario description.",
])
eq_(feature.scenarios[0].steps, [])
eq_(feature.scenarios[1].name, "Another one")
eq_(feature.scenarios[1].tags, ["foo", "bar"])
eq_(feature.scenarios[1].description, [])
self.compare_steps(feature.scenarios[1].steps, [
('given', 'Given', 'we have stuff', None, None),
('when', 'When', 'we do stuff', None, None),
('then', 'Then', 'we have things', None, None),
])
def test_parse_two_scenarios_with_description(self):
doc = u'''
Feature: Scenario Description
Scenario: One with description but without steps
First line of scenario description.
Second line of scenario description.
Scenario: Two with description and with steps
Another line of scenario description.
Given we have stuff
When we do stuff
Then we have things
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Scenario Description")
assert(len(feature.scenarios) == 2)
eq_(feature.scenarios[0].name, "One with description but without steps")
eq_(feature.scenarios[0].tags, [])
eq_(feature.scenarios[0].description, [
"First line of scenario description.",
"Second line of scenario description.",
])
eq_(feature.scenarios[0].steps, [])
eq_(feature.scenarios[1].name, "Two with description and with steps")
eq_(feature.scenarios[1].tags, [])
eq_(feature.scenarios[1].description, [
"Another line of scenario description.",
])
self.compare_steps(feature.scenarios[1].steps, [
('given', 'Given', 'we have stuff', None, None),
('when', 'When', 'we do stuff', None, None),
('then', 'Then', 'we have things', None, None),
])
def parse_tags(line):
the_parser = parser.Parser()
return the_parser.parse_tags(line.strip())
class TestParser4Tags(Common):
def test_parse_tags_with_one_tag(self):
tags = parse_tags('@one ')
eq_(len(tags), 1)
eq_(tags[0], "one")
def test_parse_tags_with_more_tags(self):
tags = parse_tags('@one @two.three-four @xxx')
eq_(len(tags), 3)
eq_(tags, [model.Tag(name, 1)
for name in (u'one', u'two.three-four', u'xxx' )])
def test_parse_tags_with_tag_and_comment(self):
tags = parse_tags('@one # @fake-tag-in-comment xxx')
eq_(len(tags), 1)
eq_(tags[0], "one")
def test_parse_tags_with_tags_and_comment(self):
tags = parse_tags('@one @two.three-four @xxx # @fake-tag-in-comment xxx')
eq_(len(tags), 3)
eq_(tags, [model.Tag(name, 1)
for name in (u'one', u'two.three-four', u'xxx' )])
@raises(parser.ParserError)
def test_parse_tags_with_invalid_tags(self):
parse_tags('@one invalid.tag boom')
class TestParser4Background(Common):
def test_parse_background(self):
doc = u'''
Feature: Background
A feature description line 1.
A feature description line 2.
Background: One
Given we init stuff
When we init more stuff
Scenario: One
Given we have stuff
When we do stuff
Then we have things
'''.lstrip()
feature = parser.parse_feature(doc)
eq_(feature.name, "Background")
eq_(feature.description, [
"A feature description line 1.",
"A feature description line 2.",
])
assert feature.background is not None
eq_(feature.background.name, "One")
self.compare_steps(feature.background.steps, [
('given', 'Given', 'we init stuff', None, None),
('when', 'When', 'we init more stuff', None, None),
])
assert(len(feature.scenarios) == 1)
eq_(feature.scenarios[0].name, "One")
eq_(feature.scenarios[0].tags, [])
self.compare_steps(feature.scenarios[0].steps, [
('given', 'Given', 'we have stuff', None, None),
('when', 'When', 'we do stuff', None, None),
('then', 'Then', 'we have things', None, None),
])
def test_parse_background_with_tags_should_fail(self):
doc = u'''
Feature: Background with tags
Expect that a ParserError occurs
because Background does not support tags/tagging.
@tags_are @not_supported
@here
Background: One
Given we init stuff
'''.lstrip()
assert_raises(parser.ParserError, parser.parse_feature, doc)
def test_parse_two_background_should_fail(self):
doc = u'''
Feature: Two Backgrounds
Expect that a ParserError occurs
because at most one Background is supported.
Background: One
Given we init stuff
Background: Two
When we init more stuff
'''.lstrip()
assert_raises(parser.ParserError, parser.parse_feature, doc)
def test_parse_background_after_scenario_should_fail(self):
doc = u'''
Feature: Background after Scenario
Expect that a ParserError occurs
because Background is only allowed before any Scenario.
Scenario: One
Given we have stuff
Background: Two
When we init more stuff
'''.lstrip()
assert_raises(parser.ParserError, parser.parse_feature, doc)
def test_parse_background_after_scenario_outline_should_fail(self):
doc = u'''
Feature: Background after ScenarioOutline
Expect that a ParserError occurs
because Background is only allowed before any ScenarioOuline.
Scenario Outline: ...
Given there is <name>
Examples:
| name |
| Alice |
Background: Two
When we init more stuff
'''.lstrip()
assert_raises(parser.ParserError, parser.parse_feature, doc)
class TestParser4Steps(Common):
"""
Tests parser.parse_steps() and parser.Parser.parse_steps() functionality.
"""
def test_parse_steps_with_simple_steps(self):
doc = u'''
Given a simple step
When I have another simple step
And I have another simple step
Then every step will be parsed without errors
'''.lstrip()
steps = parser.parse_steps(doc)
eq_(len(steps), 4)
# -- EXPECTED STEP DATA:
# SCHEMA: step_type, keyword, name, text, table
self.compare_steps(steps, [
("given", "Given", "a simple step", None, None),
("when", "When", "I have another simple step", None, None),
("when", "And", "I have another simple step", None, None),
("then", "Then", "every step will be parsed without errors",
None, None),
])
def test_parse_steps_with_multiline_text(self):
doc = u'''
Given a step with multi-line text:
"""
Lorem ipsum
Ipsum lorem
"""
When I have a step with multi-line text:
"""
Ipsum lorem
Lorem ipsum
"""
Then every step will be parsed without errors
'''.lstrip()
steps = parser.parse_steps(doc)
eq_(len(steps), 3)
# -- EXPECTED STEP DATA:
# SCHEMA: step_type, keyword, name, text, table
text1 = "Lorem ipsum\nIpsum lorem"
text2 = "Ipsum lorem\nLorem ipsum"
self.compare_steps(steps, [
("given", "Given", "a step with multi-line text", text1, None),
("when", "When", "I have a step with multi-line text", text2, None),
("then", "Then", "every step will be parsed without errors",
None, None),
])
def test_parse_steps_when_last_step_has_multiline_text(self):
doc = u'''
Given a simple step
Then the last step has multi-line text:
"""
Lorem ipsum
Ipsum lorem
"""
'''.lstrip()
steps = parser.parse_steps(doc)
eq_(len(steps), 2)
# -- EXPECTED STEP DATA:
# SCHEMA: step_type, keyword, name, text, table
text2 = "Lorem ipsum\nIpsum lorem"
self.compare_steps(steps, [
("given", "Given", "a simple step", None, None),
("then", "Then", "the last step has multi-line text", text2, None),
])
def test_parse_steps_with_table(self):
doc = u'''
Given a step with a table:
| Name | Age |
| Alice | 12 |
| Bob | 23 |
When I have a step with a table:
| Country | Capital |
| France | Paris |
| Germany | Berlin |
| Spain | Madrid |
| USA | Washington |
Then every step will be parsed without errors
'''.lstrip()
steps = parser.parse_steps(doc)
eq_(len(steps), 3)
# -- EXPECTED STEP DATA:
# SCHEMA: step_type, keyword, name, text, table
table1 = model.Table([u"Name", u"Age"], 0, [
[ u"Alice", u"12" ],
[ u"Bob", u"23" ],
])
table2 = model.Table([u"Country", u"Capital"], 0, [
[ u"France", u"Paris" ],
[ u"Germany", u"Berlin" ],
[ u"Spain", u"Madrid" ],
[ u"USA", u"Washington" ],
])
self.compare_steps(steps, [
("given", "Given", "a step with a table", None, table1),
("when", "When", "I have a step with a table", None, table2),
("then", "Then", "every step will be parsed without errors",
None, None),
])
def test_parse_steps_when_last_step_has_a_table(self):
doc = u'''
Given a simple step
Then the last step has a final table:
| Name | City |
| Alonso | Barcelona |
| Bred | London |
'''.lstrip()
steps = parser.parse_steps(doc)
eq_(len(steps), 2)
# -- EXPECTED STEP DATA:
# SCHEMA: step_type, keyword, name, text, table
table2 = model.Table([u"Name", u"City"], 0, [
[ u"Alonso", u"Barcelona" ],
[ u"Bred", u"London" ],
])
self.compare_steps(steps, [
("given", "Given", "a simple step", None, None),
("then", "Then", "the last step has a final table", None, table2),
])
@raises(parser.ParserError)
def test_parse_steps_with_malformed_table(self):
doc = u'''
Given a step with a malformed table:
| Name | City |
| Alonso | Barcelona | 2004 |
| Bred | London | 2010 |
'''.lstrip()
steps = parser.parse_steps(doc)
|