OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-present eyeo GmbH |
| 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. |
| 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. |
| 13 * |
| 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ |
| 17 |
| 18 #include "gtest/gtest.h" |
| 19 #include "compiled/String.h" |
| 20 #include "compiled/filter/Filter.h" |
| 21 #include "compiled/filter/ElemHideBase.h" |
| 22 |
| 23 TEST(TestFilter, testFromText) |
| 24 { |
| 25 OwnedString t(u"www.example.com#?#:-abp-properties(foo)"_str); |
| 26 DependentString text(t); |
| 27 |
| 28 FilterPtr filter(Filter::FromText(text)); |
| 29 EXPECT_EQ(filter->GetText(), u"www.example.com#?#:-abp-properties(foo)"_str); |
| 30 } |
| 31 |
| 32 TEST(TestFilter, testFilterConversionText) |
| 33 { |
| 34 { |
| 35 OwnedString t(u"www.example.com##[-abp-properties='foo']"_str); |
| 36 DependentString text(t); |
| 37 |
| 38 FilterPtr filter(Filter::FromText(text)); |
| 39 EXPECT_EQ(filter->GetText(), u"www.example.com#?#:-abp-properties(foo)"_str)
; |
| 40 } |
| 41 { |
| 42 OwnedString t(u"example.com##foo[-abp-properties='something']bar"_str); |
| 43 DependentString text(t); |
| 44 |
| 45 FilterPtr filter(Filter::FromText(text)); |
| 46 EXPECT_EQ(filter->GetText(), u"example.com#?#foo:-abp-properties(something)b
ar"_str); |
| 47 } |
| 48 { |
| 49 OwnedString t(u"foo.com##[-abp-properties='/margin: [3-4]{2}/']"_str); |
| 50 DependentString text(t); |
| 51 |
| 52 FilterPtr filter(Filter::FromText(text)); |
| 53 EXPECT_EQ(filter->GetText(), u"foo.com#?#:-abp-properties(/margin: [3-4]{2}/
)"_str); |
| 54 ASSERT_TRUE(filter->As<ElemHideBase>()); |
| 55 EXPECT_EQ(filter->As<ElemHideBase>()->GetSelector(), u":-abp-properties(/mar
gin: [3-4]\\7B 2\\7D /)"_str); |
| 56 } |
| 57 } |
| 58 |
| 59 TEST(TestFilter, testFilterExceptionConversionText) |
| 60 { |
| 61 OwnedString t(u"www.example.com#@#[-abp-properties='foo']"_str); |
| 62 DependentString text(t); |
| 63 |
| 64 FilterPtr filter(Filter::FromText(text)); |
| 65 EXPECT_EQ(filter->GetText(), u"www.example.com#@#:-abp-properties(foo)"_str); |
| 66 } |
| 67 |
| 68 TEST(TestFilter, testFilterSyntaxErrorConversion) |
| 69 { |
| 70 { |
| 71 OwnedString t(u"www.example.com#@#[-abp-properties='foo'bar'baz']"_str); |
| 72 DependentString text(t); |
| 73 |
| 74 FilterPtr filter(Filter::FromText(text)); |
| 75 EXPECT_FALSE(filter); |
| 76 } |
| 77 { |
| 78 OwnedString t(u"www.example.com#@#[-abp-properties='foo'bar']"_str); |
| 79 DependentString text(t); |
| 80 |
| 81 FilterPtr filter(Filter::FromText(text)); |
| 82 EXPECT_FALSE(filter); |
| 83 } |
| 84 } |
OLD | NEW |