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
|
import re
import warnings
import weakref
import unittest
import pickle
import typing
from typing import Any
from lxml import etree
from lxml.html import HtmlElement
from pkg_resources import parse_version
from parsel import Selector, SelectorList
from parsel.selector import (
CannotRemoveElementWithoutRoot,
CannotRemoveElementWithoutParent,
)
class SelectorTestCase(unittest.TestCase):
sscls = Selector
def assertIsSelector(self, value: Any) -> None:
self.assertEqual(type(value), type(self.sscls(text="")))
def assertIsSelectorList(self, value: Any) -> None:
self.assertEqual(type(value), type(self.sscls.selectorlist_cls()))
def test_pickle_selector(self) -> None:
sel = self.sscls(text="<html><body><p>some text</p></body></html>")
self.assertRaises(
TypeError, lambda s: pickle.dumps(s, protocol=2), sel
)
def test_pickle_selector_list(self) -> None:
sel = self.sscls(
text="<html><body><ul><li>1</li><li>2</li><li>3</li></ul></body></html>"
)
sel_list = sel.css("li")
empty_sel_list = sel.css("p")
self.assertIsSelectorList(sel_list)
self.assertIsSelectorList(empty_sel_list)
self.assertRaises(
TypeError, lambda s: pickle.dumps(s, protocol=2), sel_list
)
self.assertRaises(
TypeError, lambda s: pickle.dumps(s, protocol=2), empty_sel_list
)
def test_simple_selection(self) -> None:
"""Simple selector tests"""
body = "<p><input name='a'value='1'/><input name='b'value='2'/></p>"
sel = self.sscls(text=body)
xl = sel.xpath("//input")
self.assertEqual(2, len(xl))
for x in xl:
self.assertIsSelector(x)
self.assertEqual(
sel.xpath("//input").extract(),
[x.extract() for x in sel.xpath("//input")],
)
self.assertEqual(
[x.extract() for x in sel.xpath("//input[@name='a']/@name")], ["a"]
)
self.assertEqual(
[
x.extract()
for x in sel.xpath(
"number(concat(//input[@name='a']/@value, //input[@name='b']/@value))"
)
],
["12.0"],
)
self.assertEqual(
sel.xpath("concat('xpath', 'rules')").extract(), ["xpathrules"]
)
self.assertEqual(
[
x.extract()
for x in sel.xpath(
"concat(//input[@name='a']/@value, //input[@name='b']/@value)"
)
],
["12"],
)
def test_simple_selection_with_variables(self) -> None:
"""Using XPath variables"""
body = "<p><input name='a' value='1'/><input name='b' value='2'/></p>"
sel = self.sscls(text=body)
self.assertEqual(
[
x.extract()
for x in sel.xpath("//input[@value=$number]/@name", number=1)
],
["a"],
)
self.assertEqual(
[
x.extract()
for x in sel.xpath("//input[@name=$letter]/@value", letter="b")
],
["2"],
)
self.assertEqual(
sel.xpath(
"count(//input[@value=$number or @name=$letter])",
number=2,
letter="a",
).extract(),
["2.0"],
)
# you can also pass booleans
self.assertEqual(
sel.xpath(
"boolean(count(//input)=$cnt)=$test", cnt=2, test=True
).extract(),
["1"],
)
self.assertEqual(
sel.xpath(
"boolean(count(//input)=$cnt)=$test", cnt=4, test=True
).extract(),
["0"],
)
self.assertEqual(
sel.xpath(
"boolean(count(//input)=$cnt)=$test", cnt=4, test=False
).extract(),
["1"],
)
# for named nodes, you need to use "name()=node_name"
self.assertEqual(
sel.xpath(
"boolean(count(//*[name()=$tag])=$cnt)=$test",
tag="input",
cnt=2,
test=True,
).extract(),
["1"],
)
def test_simple_selection_with_variables_escape_friendly(self) -> None:
"""Using XPath variables with quotes that would need escaping with string formatting"""
body = """<p>I'm mixing single and <input name='a' value='I say "Yeah!"'/>
"double quotes" and I don't care :)</p>"""
sel = self.sscls(text=body)
t = 'I say "Yeah!"'
# naive string formatting with give something like:
# ValueError: XPath error: Invalid predicate in //input[@value="I say "Yeah!""]/@name
self.assertRaises(
ValueError, sel.xpath, f'//input[@value="{t}"]/@name'
)
# with XPath variables, escaping is done for you
self.assertEqual(
[
x.extract()
for x in sel.xpath("//input[@value=$text]/@name", text=t)
],
["a"],
)
lt = """I'm mixing single and "double quotes" and I don't care :)"""
# the following gives you something like
# ValueError: XPath error: Invalid predicate in //p[normalize-space()='I'm mixing single and "double quotes" and I don't care :)']//@name
self.assertRaises(
ValueError, sel.xpath, f"//p[normalize-space()='{lt}']//@name"
)
self.assertEqual(
[
x.extract()
for x in sel.xpath(
"//p[normalize-space()=$lng]//@name", lng=lt
)
],
["a"],
)
def test_accessing_attributes(self) -> None:
body = """
<html lang="en" version="1.0">
<body>
<ul id="some-list" class="list-cls" class="list-cls">
<li class="item-cls" id="list-item-1">
<li class="item-cls active" id="list-item-2">
<li class="item-cls" id="list-item-3">
</ul>
</body>
</html>
"""
sel = self.sscls(text=body)
self.assertEqual({"lang": "en", "version": "1.0"}, sel.attrib)
self.assertEqual(
{"id": "some-list", "class": "list-cls"}, sel.css("ul")[0].attrib
)
# for a SelectorList, bring the attributes of first-element only
self.assertEqual(
{"id": "some-list", "class": "list-cls"}, sel.css("ul").attrib
)
self.assertEqual(
{"class": "item-cls", "id": "list-item-1"}, sel.css("li").attrib
)
self.assertEqual({}, sel.css("body").attrib)
self.assertEqual({}, sel.css("non-existing-element").attrib)
self.assertEqual(
[
{"class": "item-cls", "id": "list-item-1"},
{"class": "item-cls active", "id": "list-item-2"},
{"class": "item-cls", "id": "list-item-3"},
],
[e.attrib for e in sel.css("li")],
)
def test_representation_slice(self) -> None:
body = f"<p><input name='{50 * 'b'}' value='\xa9'/></p>"
sel = self.sscls(text=body)
representation = (
f"<Selector xpath='//input/@name' data='{37 * 'b'}...'>"
)
self.assertEqual(
[repr(it) for it in sel.xpath("//input/@name")], [representation]
)
def test_representation_unicode_query(self) -> None:
body = f"<p><input name='{50 * 'b'}' value='\xa9'/></p>"
representation = (
"<Selector xpath='//input[@value=\"©\"]/@value' data='©'>"
)
sel = self.sscls(text=body)
self.assertEqual(
[repr(it) for it in sel.xpath('//input[@value="\xa9"]/@value')],
[representation],
)
def test_check_text_argument_type(self) -> None:
self.assertRaisesRegex(
TypeError,
"text argument should be of type",
self.sscls,
b"<html/>",
)
def test_extract_first(self) -> None:
"""Test if extract_first() returns first element"""
body = '<ul><li id="1">1</li><li id="2">2</li></ul>'
sel = self.sscls(text=body)
self.assertEqual(
sel.xpath("//ul/li/text()").extract_first(),
sel.xpath("//ul/li/text()").extract()[0],
)
self.assertEqual(
sel.xpath('//ul/li[@id="1"]/text()').extract_first(),
sel.xpath('//ul/li[@id="1"]/text()').extract()[0],
)
self.assertEqual(
sel.xpath("//ul/li[2]/text()").extract_first(),
sel.xpath("//ul/li/text()").extract()[1],
)
self.assertEqual(
sel.xpath('/ul/li[@id="doesnt-exist"]/text()').extract_first(),
None,
)
def test_extract_first_default(self) -> None:
"""Test if extract_first() returns default value when no results found"""
body = '<ul><li id="1">1</li><li id="2">2</li></ul>'
sel = self.sscls(text=body)
self.assertEqual(
sel.xpath("//div/text()").extract_first(default="missing"),
"missing",
)
def test_selector_get_alias(self) -> None:
"""Test if get() returns extracted value on a Selector"""
body = '<ul><li id="1">1</li><li id="2">2</li><li id="3">3</li></ul>'
sel = self.sscls(text=body)
self.assertEqual(
sel.xpath("//ul/li[position()>1]")[0].get(), '<li id="2">2</li>'
)
self.assertEqual(
sel.xpath("//ul/li[position()>1]/text()")[0].get(), "2"
)
def test_selector_getall_alias(self) -> None:
"""Test if get() returns extracted value on a Selector"""
body = '<ul><li id="1">1</li><li id="2">2</li><li id="3">3</li></ul>'
sel = self.sscls(text=body)
self.assertListEqual(
sel.xpath("//ul/li[position()>1]")[0].getall(),
['<li id="2">2</li>'],
)
self.assertListEqual(
sel.xpath("//ul/li[position()>1]/text()")[0].getall(), ["2"]
)
def test_selectorlist_get_alias(self) -> None:
"""Test if get() returns first element for a selection call"""
body = '<ul><li id="1">1</li><li id="2">2</li><li id="3">3</li></ul>'
sel = self.sscls(text=body)
self.assertEqual(sel.xpath("//ul/li").get(), '<li id="1">1</li>')
self.assertEqual(sel.xpath("//ul/li/text()").get(), "1")
def test_re_first(self) -> None:
"""Test if re_first() returns first matched element"""
body = '<ul><li id="1">1</li><li id="2">2</li></ul>'
sel = self.sscls(text=body)
self.assertEqual(
sel.xpath("//ul/li/text()").re_first(r"\d"),
sel.xpath("//ul/li/text()").re(r"\d")[0],
)
self.assertEqual(
sel.xpath('//ul/li[@id="1"]/text()').re_first(r"\d"),
sel.xpath('//ul/li[@id="1"]/text()').re(r"\d")[0],
)
self.assertEqual(
sel.xpath("//ul/li[2]/text()").re_first(r"\d"),
sel.xpath("//ul/li/text()").re(r"\d")[1],
)
self.assertEqual(sel.xpath("/ul/li/text()").re_first(r"\w+"), None)
self.assertEqual(
sel.xpath('/ul/li[@id="doesnt-exist"]/text()').re_first(r"\d"),
None,
)
self.assertEqual(sel.re_first(r'id="(\d+)'), "1")
self.assertEqual(sel.re_first(r"foo"), None)
self.assertEqual(sel.re_first(r"foo", default="bar"), "bar")
def test_extract_first_re_default(self) -> None:
"""Test if re_first() returns default value when no results found"""
body = '<ul><li id="1">1</li><li id="2">2</li></ul>'
sel = self.sscls(text=body)
self.assertEqual(
sel.xpath("//div/text()").re_first(r"\w+", default="missing"),
"missing",
)
self.assertEqual(
sel.xpath("/ul/li/text()").re_first(r"\w+", default="missing"),
"missing",
)
def test_select_unicode_query(self) -> None:
body = "<p><input name='\xa9' value='1'/></p>"
sel = self.sscls(text=body)
self.assertEqual(
sel.xpath('//input[@name="\xa9"]/@value').extract(), ["1"]
)
def test_list_elements_type(self) -> None:
"""Test Selector returning the same type in selection methods"""
text = "<p>test<p>"
self.assertEqual(
type(self.sscls(text=text).xpath("//p")[0]),
type(self.sscls(text=text)),
)
self.assertEqual(
type(self.sscls(text=text).css("p")[0]),
type(self.sscls(text=text)),
)
def test_boolean_result(self) -> None:
body = "<p><input name='a'value='1'/><input name='b'value='2'/></p>"
xs = self.sscls(text=body)
self.assertEqual(
xs.xpath("//input[@name='a']/@name='a'").extract(), ["1"]
)
self.assertEqual(
xs.xpath("//input[@name='a']/@name='n'").extract(), ["0"]
)
def test_differences_parsing_xml_vs_html(self) -> None:
"""Test that XML and HTML Selector's behave differently"""
# some text which is parsed differently by XML and HTML flavors
text = '<div><img src="a.jpg"><p>Hello</div>'
hs = self.sscls(text=text, type="html")
self.assertEqual(
hs.xpath("//div").extract(),
['<div><img src="a.jpg"><p>Hello</p></div>'],
)
xs = self.sscls(text=text, type="xml")
self.assertEqual(
xs.xpath("//div").extract(),
['<div><img src="a.jpg"><p>Hello</p></img></div>'],
)
def test_error_for_unknown_selector_type(self) -> None:
self.assertRaises(ValueError, self.sscls, text="", type="_na_")
def test_text_or_root_is_required(self) -> None:
self.assertRaisesRegex(
ValueError,
"Selector needs either text or root argument",
self.sscls,
)
def test_bool(self) -> None:
text = '<a href="" >false</a><a href="nonempty">true</a>'
hs = self.sscls(text=text, type="html")
falsish = hs.xpath("//a/@href")[0]
self.assertEqual(falsish.extract(), "")
self.assertFalse(falsish)
trueish = hs.xpath("//a/@href")[1]
self.assertEqual(trueish.extract(), "nonempty")
self.assertTrue(trueish)
def test_slicing(self) -> None:
text = "<div><p>1</p><p>2</p><p>3</p></div>"
hs = self.sscls(text=text, type="html")
self.assertIsSelector(hs.css("p")[2])
self.assertIsSelectorList(hs.css("p")[2:3])
self.assertIsSelectorList(hs.css("p")[:2])
self.assertEqual(hs.css("p")[2:3].extract(), ["<p>3</p>"])
self.assertEqual(hs.css("p")[1:3].extract(), ["<p>2</p>", "<p>3</p>"])
def test_nested_selectors(self) -> None:
"""Nested selector tests"""
body = """<body>
<div class='one'>
<ul>
<li>one</li><li>two</li>
</ul>
</div>
<div class='two'>
<ul>
<li>four</li><li>five</li><li>six</li>
</ul>
</div>
</body>"""
x = self.sscls(text=body)
divtwo = x.xpath('//div[@class="two"]')
self.assertEqual(
divtwo.xpath("//li").extract(),
[
"<li>one</li>",
"<li>two</li>",
"<li>four</li>",
"<li>five</li>",
"<li>six</li>",
],
)
self.assertEqual(
divtwo.xpath("./ul/li").extract(),
["<li>four</li>", "<li>five</li>", "<li>six</li>"],
)
self.assertEqual(
divtwo.xpath(".//li").extract(),
["<li>four</li>", "<li>five</li>", "<li>six</li>"],
)
self.assertEqual(divtwo.xpath("./li").extract(), [])
def test_selectorlist_getall_alias(self) -> None:
"""Nested selector tests using getall()"""
body = """<body>
<div class='one'>
<ul>
<li>one</li><li>two</li>
</ul>
</div>
<div class='two'>
<ul>
<li>four</li><li>five</li><li>six</li>
</ul>
</div>
</body>"""
x = self.sscls(text=body)
divtwo = x.xpath('//div[@class="two"]')
self.assertEqual(
divtwo.xpath("//li").getall(),
[
"<li>one</li>",
"<li>two</li>",
"<li>four</li>",
"<li>five</li>",
"<li>six</li>",
],
)
self.assertEqual(
divtwo.xpath("./ul/li").getall(),
["<li>four</li>", "<li>five</li>", "<li>six</li>"],
)
self.assertEqual(
divtwo.xpath(".//li").getall(),
["<li>four</li>", "<li>five</li>", "<li>six</li>"],
)
self.assertEqual(divtwo.xpath("./li").getall(), [])
def test_mixed_nested_selectors(self) -> None:
body = """<body>
<div id=1>not<span>me</span></div>
<div class="dos"><p>text</p><a href='#'>foo</a></div>
</body>"""
sel = self.sscls(text=body)
self.assertEqual(
sel.xpath('//div[@id="1"]').css("span::text").extract(), ["me"]
)
self.assertEqual(
sel.css("#1").xpath("./span/text()").extract(), ["me"]
)
def test_dont_strip(self) -> None:
sel = self.sscls(text='<div>fff: <a href="#">zzz</a></div>')
self.assertEqual(sel.xpath("//text()").extract(), ["fff: ", "zzz"])
def test_namespaces_simple(self) -> None:
body = """
<test xmlns:somens="http://scrapy.org">
<somens:a id="foo">take this</a>
<a id="bar">found</a>
</test>
"""
x = self.sscls(text=body, type="xml")
x.register_namespace("somens", "http://scrapy.org")
self.assertEqual(x.xpath("//somens:a/text()").extract(), ["take this"])
def test_namespaces_adhoc(self) -> None:
body = """
<test xmlns:somens="http://scrapy.org">
<somens:a id="foo">take this</a>
<a id="bar">found</a>
</test>
"""
x = self.sscls(text=body, type="xml")
self.assertEqual(
x.xpath(
"//somens:a/text()", namespaces={"somens": "http://scrapy.org"}
).extract(),
["take this"],
)
def test_namespaces_adhoc_variables(self) -> None:
body = """
<test xmlns:somens="http://scrapy.org">
<somens:a id="foo">take this</a>
<a id="bar">found</a>
</test>
"""
x = self.sscls(text=body, type="xml")
self.assertEqual(
x.xpath(
"//somens:a/following-sibling::a[@id=$identifier]/text()",
namespaces={"somens": "http://scrapy.org"},
identifier="bar",
).extract(),
["found"],
)
def test_namespaces_multiple(self) -> None:
body = """<?xml version="1.0" encoding="UTF-8"?>
<BrowseNode xmlns="http://webservices.amazon.com/AWSECommerceService/2005-10-05"
xmlns:b="http://somens.com"
xmlns:p="http://www.scrapy.org/product" >
<b:Operation>hello</b:Operation>
<TestTag b:att="value"><Other>value</Other></TestTag>
<p:SecondTestTag><material>iron</material><price>90</price><p:name>Dried Rose</p:name></p:SecondTestTag>
</BrowseNode>
"""
x = self.sscls(text=body, type="xml")
x.register_namespace(
"xmlns",
"http://webservices.amazon.com/AWSECommerceService/2005-10-05",
)
x.register_namespace("p", "http://www.scrapy.org/product")
x.register_namespace("b", "http://somens.com")
self.assertEqual(len(x.xpath("//xmlns:TestTag")), 1)
self.assertEqual(x.xpath("//b:Operation/text()").extract()[0], "hello")
self.assertEqual(
x.xpath("//xmlns:TestTag/@b:att").extract()[0], "value"
)
self.assertEqual(
x.xpath("//p:SecondTestTag/xmlns:price/text()").extract()[0], "90"
)
self.assertEqual(
x.xpath("//p:SecondTestTag")
.xpath("./xmlns:price/text()")[0]
.extract(),
"90",
)
self.assertEqual(
x.xpath("//p:SecondTestTag/xmlns:material/text()").extract()[0],
"iron",
)
def test_namespaces_multiple_adhoc(self) -> None:
body = """<?xml version="1.0" encoding="UTF-8"?>
<BrowseNode xmlns="http://webservices.amazon.com/AWSECommerceService/2005-10-05"
xmlns:b="http://somens.com"
xmlns:p="http://www.scrapy.org/product" >
<b:Operation>hello</b:Operation>
<TestTag b:att="value"><Other>value</Other></TestTag>
<p:SecondTestTag><material>iron</material><price>90</price><p:name>Dried Rose</p:name></p:SecondTestTag>
</BrowseNode>
"""
x = self.sscls(text=body, type="xml")
x.register_namespace(
"xmlns",
"http://webservices.amazon.com/AWSECommerceService/2005-10-05",
)
self.assertEqual(len(x.xpath("//xmlns:TestTag")), 1)
# "b" namespace is not declared yet
self.assertRaises(ValueError, x.xpath, "//xmlns:TestTag/@b:att")
# "b" namespace being passed ad-hoc
self.assertEqual(
x.xpath(
"//b:Operation/text()", namespaces={"b": "http://somens.com"}
).extract()[0],
"hello",
)
# "b" namespace declaration is not cached
self.assertRaises(ValueError, x.xpath, "//xmlns:TestTag/@b:att")
# "xmlns" is still defined
self.assertEqual(
x.xpath(
"//xmlns:TestTag/@b:att", namespaces={"b": "http://somens.com"}
).extract()[0],
"value",
)
# chained selectors still have knowledge of register_namespace() operations
self.assertEqual(
x.xpath(
"//p:SecondTestTag",
namespaces={"p": "http://www.scrapy.org/product"},
)
.xpath("./xmlns:price/text()")[0]
.extract(),
"90",
)
# but chained selector don't know about parent ad-hoc declarations
self.assertRaises(
ValueError,
x.xpath(
"//p:SecondTestTag",
namespaces={"p": "http://www.scrapy.org/product"},
).xpath,
"p:name/text()",
)
# ad-hoc declarations need repeats when chaining
self.assertEqual(
x.xpath(
"//p:SecondTestTag",
namespaces={"p": "http://www.scrapy.org/product"},
)
.xpath(
"p:name/text()",
namespaces={"p": "http://www.scrapy.org/product"},
)
.extract_first(),
"Dried Rose",
)
# declaring several ad-hoc namespaces
self.assertEqual(
x.xpath(
"string(//b:Operation/following-sibling::xmlns:TestTag"
"/following-sibling::*//p:name)",
namespaces={
"b": "http://somens.com",
"p": "http://www.scrapy.org/product",
},
).extract_first(),
"Dried Rose",
)
# "p" prefix is not cached from previous calls
self.assertRaises(
ValueError, x.xpath, "//p:SecondTestTag/xmlns:price/text()"
)
x.register_namespace("p", "http://www.scrapy.org/product")
self.assertEqual(
x.xpath("//p:SecondTestTag/xmlns:material/text()").extract()[0],
"iron",
)
def test_make_links_absolute(self) -> None:
text = '<a href="file.html">link to file</a>'
sel = Selector(text=text, base_url="http://example.com")
typing.cast(HtmlElement, sel.root).make_links_absolute()
self.assertEqual(
"http://example.com/file.html",
sel.xpath("//a/@href").extract_first(),
)
def test_re(self) -> None:
body = """<div>Name: Mary
<ul>
<li>Name: John</li>
<li>Age: 10</li>
<li>Name: Paul</li>
<li>Age: 20</li>
</ul>
Age: 20
</div>"""
x = self.sscls(text=body)
name_re = re.compile(r"Name: (\w+)")
self.assertEqual(x.xpath("//ul/li").re(name_re), ["John", "Paul"])
self.assertEqual(x.xpath("//ul/li").re(r"Age: (\d+)"), ["10", "20"])
# Test named group, hit and miss
x = self.sscls(text="foobar")
self.assertEqual(x.re("(?P<extract>foo)"), ["foo"])
self.assertEqual(x.re("(?P<extract>baz)"), [])
# A purposely constructed test for an edge case
x = self.sscls(text="baz")
self.assertEqual(x.re("(?P<extract>foo)|(?P<bar>baz)"), [])
def test_re_replace_entities(self) -> None:
body = """<script>{"foo":"bar & "baz""}</script>"""
x = self.sscls(text=body)
name_re = re.compile('{"foo":(.*)}')
# by default, only & and < are preserved ;
# other entities are converted
expected = '"bar & "baz""'
self.assertEqual(x.xpath("//script/text()").re(name_re), [expected])
self.assertEqual(x.xpath("//script").re(name_re), [expected])
self.assertEqual(x.xpath("//script/text()")[0].re(name_re), [expected])
self.assertEqual(x.xpath("//script")[0].re(name_re), [expected])
# check that re_first() works the same way for single value output
self.assertEqual(x.xpath("//script").re_first(name_re), expected)
self.assertEqual(x.xpath("//script")[0].re_first(name_re), expected)
# switching off replace_entities will preserve " also
expected = '"bar & "baz""'
self.assertEqual(
x.xpath("//script/text()").re(name_re, replace_entities=False),
[expected],
)
self.assertEqual(
x.xpath("//script")[0].re(name_re, replace_entities=False),
[expected],
)
self.assertEqual(
x.xpath("//script/text()").re_first(
name_re, replace_entities=False
),
expected,
)
self.assertEqual(
x.xpath("//script")[0].re_first(name_re, replace_entities=False),
expected,
)
def test_re_intl(self) -> None:
body = "<div>Evento: cumplea\xf1os</div>"
x = self.sscls(text=body)
self.assertEqual(
x.xpath("//div").re(r"Evento: (\w+)"), ["cumplea\xf1os"]
)
def test_selector_over_text(self) -> None:
hs = self.sscls(text="<root>lala</root>")
self.assertEqual(
hs.extract(), "<html><body><root>lala</root></body></html>"
)
xs = self.sscls(text="<root>lala</root>", type="xml")
self.assertEqual(xs.extract(), "<root>lala</root>")
self.assertEqual(xs.xpath(".").extract(), ["<root>lala</root>"])
def test_invalid_xpath(self) -> None:
"Test invalid xpath raises ValueError with the invalid xpath"
x = self.sscls(text="<html></html>")
xpath = "//test[@foo='bar]"
self.assertRaisesRegex(ValueError, re.escape(xpath), x.xpath, xpath)
def test_invalid_xpath_unicode(self) -> None:
"Test *Unicode* invalid xpath raises ValueError with the invalid xpath"
x = self.sscls(text="<html></html>")
xpath = "//test[@foo='\\u0431ar]"
self.assertRaisesRegex(ValueError, re.escape(xpath), x.xpath, xpath)
def test_http_header_encoding_precedence(self) -> None:
# '\xa3' = pound symbol in unicode
# '\xc2\xa3' = pound symbol in utf-8
# '\xa3' = pound symbol in latin-1 (iso-8859-1)
text = """<html>
<head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head>
<body><span id="blank">\xa3</span></body></html>"""
x = self.sscls(text=text)
self.assertEqual(
x.xpath("//span[@id='blank']/text()").extract(), ["\xa3"]
)
def test_empty_bodies_shouldnt_raise_errors(self) -> None:
self.sscls(text="").xpath("//text()").extract()
def test_bodies_with_comments_only(self) -> None:
sel = self.sscls(
text="<!-- hello world -->", base_url="http://example.com"
)
self.assertEqual("http://example.com", sel.root.base)
def test_null_bytes_shouldnt_raise_errors(self) -> None:
text = "<root>pre\x00post</root>"
self.sscls(text).xpath("//text()").extract()
def test_replacement_char_from_badly_encoded_body(self) -> None:
# \xe9 alone isn't valid utf8 sequence
text = "<html><p>an Jos\\ufffd de</p><html>"
self.assertEqual(
["an Jos\\ufffd de"], self.sscls(text).xpath("//text()").extract()
)
def test_select_on_unevaluable_nodes(self) -> None:
r = self.sscls(text='<span class="big">some text</span>')
# Text node
x1 = r.xpath("//text()")
self.assertEqual(x1.extract(), ["some text"])
self.assertEqual(x1.xpath(".//b").extract(), [])
# Tag attribute
x1 = r.xpath("//span/@class")
self.assertEqual(x1.extract(), ["big"])
self.assertEqual(x1.xpath(".//text()").extract(), [])
def test_select_on_text_nodes(self) -> None:
r = self.sscls(
text="<div><b>Options:</b>opt1</div><div><b>Other</b>opt2</div>"
)
x1 = r.xpath(
"//div/descendant::text()[preceding-sibling::b[contains(text(), 'Options')]]"
)
self.assertEqual(x1.extract(), ["opt1"])
x1 = r.xpath(
"//div/descendant::text()/preceding-sibling::b[contains(text(), 'Options')]"
)
self.assertEqual(x1.extract(), ["<b>Options:</b>"])
@unittest.skip("Text nodes lost parent node reference in lxml")
def test_nested_select_on_text_nodes(self) -> None:
# FIXME: does not work with lxml backend [upstream]
r = self.sscls(
text="<div><b>Options:</b>opt1</div><div><b>Other</b>opt2</div>"
)
x1 = r.xpath("//div/descendant::text()")
x2 = x1.xpath("./preceding-sibling::b[contains(text(), 'Options')]")
self.assertEqual(x2.extract(), ["<b>Options:</b>"])
def test_weakref_slots(self) -> None:
"""Check that classes are using slots and are weak-referenceable"""
x = self.sscls(text="")
weakref.ref(x)
assert not hasattr(
x, "__dict__"
), f"{x.__class__.__name__} does not use __slots__"
def test_remove_namespaces(self) -> None:
xml = """<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-US" xmlns:media="http://search.yahoo.com/mrss/">
<link type="text/html"/>
<entry>
<link type="text/html"/>
</entry>
<link type="application/atom+xml"/>
</feed>
"""
sel = self.sscls(text=xml, type="xml")
self.assertEqual(len(sel.xpath("//link")), 0)
self.assertEqual(len(sel.xpath("./namespace::*")), 3)
sel.remove_namespaces()
self.assertEqual(len(sel.xpath("//link")), 3)
self.assertEqual(len(sel.xpath("./namespace::*")), 1)
def test_remove_namespaces_embedded(self) -> None:
xml = """
<feed xmlns="http://www.w3.org/2005/Atom">
<link type="text/html"/>
<entry>
<link type="text/html"/>
</entry>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 100 100">
<linearGradient id="gradient">
<stop class="begin" offset="0%" style="stop-color:yellow;"/>
<stop class="end" offset="80%" style="stop-color:green;"/>
</linearGradient>
<circle cx="50" cy="50" r="30" style="fill:url(#gradient)" />
</svg>
</feed>
"""
sel = self.sscls(text=xml, type="xml")
self.assertEqual(len(sel.xpath("//link")), 0)
self.assertEqual(len(sel.xpath("//stop")), 0)
self.assertEqual(len(sel.xpath("./namespace::*")), 2)
self.assertEqual(
len(
sel.xpath(
"//f:link", namespaces={"f": "http://www.w3.org/2005/Atom"}
)
),
2,
)
self.assertEqual(
len(
sel.xpath(
"//s:stop", namespaces={"s": "http://www.w3.org/2000/svg"}
)
),
2,
)
sel.remove_namespaces()
self.assertEqual(len(sel.xpath("//link")), 2)
self.assertEqual(len(sel.xpath("//stop")), 2)
self.assertEqual(len(sel.xpath("./namespace::*")), 1)
def test_remove_attributes_namespaces(self) -> None:
xml = """<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns:atom="http://www.w3.org/2005/Atom" xml:lang="en-US" xmlns:media="http://search.yahoo.com/mrss/">
<link atom:type="text/html"/>
<entry>
<link atom:type="text/html"/>
</entry>
<link atom:type="application/atom+xml"/>
</feed>
"""
sel = self.sscls(text=xml, type="xml")
self.assertEqual(len(sel.xpath("//link/@type")), 0)
sel.remove_namespaces()
self.assertEqual(len(sel.xpath("//link/@type")), 3)
def test_smart_strings(self) -> None:
"""Lxml smart strings return values"""
class SmartStringsSelector(Selector):
_lxml_smart_strings = True
body = """<body>
<div class='one'>
<ul>
<li>one</li><li>two</li>
</ul>
</div>
<div class='two'>
<ul>
<li>four</li><li>five</li><li>six</li>
</ul>
</div>
</body>"""
# .getparent() is available for text nodes and attributes
# only when smart_strings are on
x = self.sscls(text=body)
li_text = x.xpath("//li/text()")
self.assertFalse(any([hasattr(e.root, "getparent") for e in li_text]))
div_class = x.xpath("//div/@class")
self.assertFalse(
any([hasattr(e.root, "getparent") for e in div_class])
)
smart_x = SmartStringsSelector(text=body)
smart_li_text = smart_x.xpath("//li/text()")
self.assertTrue(
all([hasattr(e.root, "getparent") for e in smart_li_text])
)
smart_div_class = smart_x.xpath("//div/@class")
self.assertTrue(
all([hasattr(e.root, "getparent") for e in smart_div_class])
)
def test_xml_entity_expansion(self) -> None:
malicious_xml = (
'<?xml version="1.0" encoding="ISO-8859-1"?>'
"<!DOCTYPE foo [ <!ELEMENT foo ANY > <!ENTITY xxe SYSTEM "
'"file:///etc/passwd" >]><foo>&xxe;</foo>'
)
sel = self.sscls(text=malicious_xml, type="xml")
self.assertEqual(sel.extract(), "<foo>&xxe;</foo>")
def test_configure_base_url(self) -> None:
sel = self.sscls(text="nothing", base_url="http://example.com")
self.assertEqual("http://example.com", sel.root.base)
def test_extending_selector(self) -> None:
class MySelectorList(SelectorList["MySelector"]):
pass
class MySelector(Selector):
selectorlist_cls = MySelectorList
def extra_method(self) -> str:
return "extra" + self.get()
sel = MySelector(text="<html><div>foo</div></html>")
self.assertIsInstance(sel.xpath("//div"), MySelectorList)
self.assertIsInstance(sel.xpath("//div")[0], MySelector)
self.assertIsInstance(sel.css("div"), MySelectorList)
self.assertIsInstance(sel.css("div")[0], MySelector)
content: str = sel.css("div")[0].extra_method()
self.assertEqual("extra<div>foo</div>", content)
def test_replacement_null_char_from_body(self) -> None:
text = "<html>\x00<body><p>Grainy</p></body></html>"
self.assertEqual(
"<html><body><p>Grainy</p></body></html>",
self.sscls(text).extract(),
)
def test_remove_selector_list(self) -> None:
sel = self.sscls(
text="<html><body><ul><li>1</li><li>2</li><li>3</li></ul></body></html>"
)
sel_list = sel.css("li")
sel_list.drop()
self.assertIsSelectorList(sel.css("li"))
self.assertEqual(sel.css("li"), [])
def test_remove_selector(self) -> None:
sel = self.sscls(
text="<html><body><ul><li>1</li><li>2</li><li>3</li></ul></body></html>"
)
sel_list = sel.css("li")
sel_list[0].drop()
self.assertIsSelectorList(sel.css("li"))
self.assertEqual(sel.css("li::text").getall(), ["2", "3"])
def test_remove_pseudo_element_selector_list(self) -> None:
sel = self.sscls(
text="<html><body><ul><li>1</li><li>2</li><li>3</li></ul></body></html>"
)
sel_list = sel.css("li::text")
self.assertEqual(sel_list.getall(), ["1", "2", "3"])
with self.assertRaises(CannotRemoveElementWithoutRoot):
sel_list.drop()
self.assertIsSelectorList(sel.css("li"))
self.assertEqual(sel.css("li::text").getall(), ["1", "2", "3"])
def test_remove_pseudo_element_selector(self) -> None:
sel = self.sscls(
text="<html><body><ul><li>1</li><li>2</li><li>3</li></ul></body></html>"
)
sel_list = sel.css("li::text")
self.assertEqual(sel_list.getall(), ["1", "2", "3"])
with self.assertRaises(CannotRemoveElementWithoutRoot):
sel_list[0].drop()
self.assertIsSelectorList(sel.css("li"))
self.assertEqual(sel.css("li::text").getall(), ["1", "2", "3"])
def test_remove_root_element_selector(self) -> None:
sel = self.sscls(
text="<html><body><ul><li>1</li><li>2</li><li>3</li></ul></body></html>"
)
sel_list = sel.css("li::text")
self.assertEqual(sel_list.getall(), ["1", "2", "3"])
with self.assertRaises(CannotRemoveElementWithoutParent):
sel.drop()
with self.assertRaises(CannotRemoveElementWithoutParent):
sel.css("html").drop()
self.assertIsSelectorList(sel.css("li"))
self.assertEqual(sel.css("li::text").getall(), ["1", "2", "3"])
sel.css("body").drop()
self.assertEqual(sel.get(), "<html></html>")
def test_deep_nesting(self):
lxml_version = parse_version(etree.__version__)
lxml_huge_tree_version = parse_version("4.2")
content = """
<html>
<body>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span><span>
<span><span><span><span><span><span><span><span><span><span><span><span>
hello world
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span>
</span></span></span></span></span></span></span></span></span></span>
<table>
<tr><td>some test</td></tr>
</table>
</body>
</html>
"""
# If lxml doesn't support huge trees expect wrong results and a warning
if lxml_version < lxml_huge_tree_version:
with warnings.catch_warnings(record=True) as w:
sel = Selector(text=content)
self.assertIn("huge_tree", str(w[0].message))
self.assertLessEqual(len(sel.css("span")), 256)
self.assertEqual(len(sel.css("td")), 0)
return
# Same goes for explicitly disabling huge trees
with warnings.catch_warnings(record=True) as w:
sel = Selector(text=content, huge_tree=False)
self.assertIn("huge_tree", str(w[0].message))
self.assertLessEqual(len(sel.css("span")), 256)
self.assertEqual(len(sel.css("td")), 0)
# If huge trees are enabled, elements with a depth > 255 should be found
sel = Selector(text=content)
nest_level = 282
self.assertEqual(len(sel.css("span")), nest_level)
self.assertEqual(len(sel.css("td")), 1)
class ExsltTestCase(unittest.TestCase):
sscls = Selector
def test_regexp(self) -> None:
"""EXSLT regular expression tests"""
body = """
<p><input name='a' value='1'/><input name='b' value='2'/></p>
<div class="links">
<a href="/first.html">first link</a>
<a href="/second.html">second link</a>
<a href="http://www.bayes.co.uk/xml/index.xml?/xml/utils/rechecker.xml">EXSLT match example</a>
</div>
"""
sel = self.sscls(text=body)
# re:test()
self.assertEqual(
sel.xpath('//input[re:test(@name, "[A-Z]+", "i")]').extract(),
[
x.extract()
for x in sel.xpath('//input[re:test(@name, "[A-Z]+", "i")]')
],
)
self.assertEqual(
[
x.extract()
for x in sel.xpath(r'//a[re:test(@href, "\.html$")]/text()')
],
["first link", "second link"],
)
self.assertEqual(
[
x.extract()
for x in sel.xpath('//a[re:test(@href, "first")]/text()')
],
["first link"],
)
self.assertEqual(
[
x.extract()
for x in sel.xpath('//a[re:test(@href, "second")]/text()')
],
["second link"],
)
# re:match() is rather special: it returns a node-set of <match> nodes
# ['<match>http://www.bayes.co.uk/xml/index.xml?/xml/utils/rechecker.xml</match>',
# '<match>http</match>',
# '<match>www.bayes.co.uk</match>',
# '<match></match>',
# '<match>/xml/index.xml?/xml/utils/rechecker.xml</match>']
self.assertEqual(
sel.xpath(
r're:match(//a[re:test(@href, "\.xml$")]/@href,'
r'"(\w+):\/\/([^/:]+)(:\d*)?([^# ]*)")/text()'
).extract(),
[
"http://www.bayes.co.uk/xml/index.xml?/xml/utils/rechecker.xml",
"http",
"www.bayes.co.uk",
"",
"/xml/index.xml?/xml/utils/rechecker.xml",
],
)
# re:replace()
self.assertEqual(
sel.xpath(
r're:replace(//a[re:test(@href, "\.xml$")]/@href,'
r'"(\w+)://(.+)(\.xml)", "","https://\2.html")'
).extract(),
[
"https://www.bayes.co.uk/xml/index.xml?/xml/utils/rechecker.html"
],
)
def test_set(self) -> None:
"""EXSLT set manipulation tests"""
# microdata example from http://schema.org/Event
body = """
<div itemscope itemtype="http://schema.org/Event">
<a itemprop="url" href="nba-miami-philidelphia-game3.html">
NBA Eastern Conference First Round Playoff Tickets:
<span itemprop="name"> Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1) </span>
</a>
<meta itemprop="startDate" content="2016-04-21T20:00">
Thu, 04/21/16
8:00 p.m.
<div itemprop="location" itemscope itemtype="http://schema.org/Place">
<a itemprop="url" href="wells-fargo-center.html">
Wells Fargo Center
</a>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<span itemprop="addressLocality">Philadelphia</span>,
<span itemprop="addressRegion">PA</span>
</div>
</div>
<div itemprop="offers" itemscope itemtype="http://schema.org/AggregateOffer">
Priced from: <span itemprop="lowPrice">$35</span>
<span itemprop="offerCount">1938</span> tickets left
</div>
</div>
"""
sel = self.sscls(text=body)
self.assertEqual(
sel.xpath(
"""//div[@itemtype="http://schema.org/Event"]
//@itemprop"""
).extract(),
[
"url",
"name",
"startDate",
"location",
"url",
"address",
"addressLocality",
"addressRegion",
"offers",
"lowPrice",
"offerCount",
],
)
self.assertEqual(
sel.xpath(
"""
set:difference(//div[@itemtype="http://schema.org/Event"]
//@itemprop,
//div[@itemtype="http://schema.org/Event"]
//*[@itemscope]/*/@itemprop)"""
).extract(),
["url", "name", "startDate", "location", "offers"],
)
def test_dont_remove_text_after_deleted_element(self) -> None:
sel = self.sscls(
text="""<html><body>Text before.<span>Text in.</span> Text after.</body></html>
"""
)
sel.css("span").drop()
self.assertEqual(
sel.get(), "<html><body>Text before. Text after.</body></html>"
)
def test_drop_with_xml_type(self) -> None:
sel = self.sscls(text="<a><b></b><c/></a>", type="xml")
el = sel.xpath("//b")[0]
assert el.root.getparent() is not None
el.drop()
assert sel.get() == "<a><c/></a>"
|