Blame view

vendor/ezyang/htmlpurifier/tests/HTMLPurifier/Injector/RemoveSpansWithoutAttributesTest.php 2.81 KB
70f4f18b   Administrator   first_commit
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
  <?php
  
  class HTMLPurifier_Injector_RemoveSpansWithoutAttributesTest extends HTMLPurifier_InjectorHarness
  {
      public function setup()
      {
          parent::setup();
          $this->config->set('HTML.Allowed', 'span[class],div,p,strong,em');
          $this->config->set('AutoFormat.RemoveSpansWithoutAttributes', true);
      }
  
      public function testSingleSpan()
      {
          $this->assertResult(
              '<span>foo</span>',
              'foo'
          );
      }
  
      public function testSingleSpanWithAttributes()
      {
          $this->assertResult(
              '<span class="bar">foo</span>',
              '<span class="bar">foo</span>'
          );
      }
  
      public function testSingleNestedSpan()
      {
          $this->assertResult(
              '<p><span>foo</span></p>',
              '<p>foo</p>'
          );
      }
  
      public function testSingleNestedSpanWithAttributes()
      {
          $this->assertResult(
              '<p><span class="bar">foo</span></p>',
              '<p><span class="bar">foo</span></p>'
          );
      }
  
  
      public function testSpanWithChildren()
      {
          $this->assertResult(
              '<span>foo <strong>bar</strong> <em>baz</em></span>',
              'foo <strong>bar</strong> <em>baz</em>'
          );
      }
  
      public function testSpanWithSiblings()
      {
          $this->assertResult(
              '<p>before <span>inside</span> <strong>after</strong></p>',
              '<p>before inside <strong>after</strong></p>'
          );
      }
  
      public function testNestedSpanWithSiblingsAndChildren()
      {
          $this->assertResult(
              '<p>a <span>b <em>c</em> d</span> e</p>',
              '<p>a b <em>c</em> d e</p>'
          );
      }
  
      public function testNestedSpansWithoutAttributes()
      {
          $this->assertResult(
              '<span>one<span>two<span>three</span></span></span>',
              'onetwothree'
          );
      }
  
      public function testDeeplyNestedSpan()
      {
          $this->assertResult(
              '<div><div><div><span class="a">a <span>b</span> c</span></div></div></div>',
              '<div><div><div><span class="a">a b c</span></div></div></div>'
          );
      }
  
      public function testSpanWithInvalidAttributes()
      {
          $this->assertResult(
              '<p><span snorkel buzzer="emu">foo</span></p>',
              '<p>foo</p>'
          );
      }
  
      public function testNestedAlternateSpans()
      {
          $this->assertResult(
  '<span>a <span class="x">b <span>c <span class="y">d <span>e <span class="z">f
  </span></span></span></span></span></span>',
  'a <span class="x">b c <span class="y">d e <span class="z">f
  </span></span></span>'
          );
      }
  
      public function testSpanWithSomeInvalidAttributes()
      {
          $this->assertResult(
              '<p><span buzzer="emu" class="bar">foo</span></p>',
              '<p><span class="bar">foo</span></p>'
          );
      }
  }
  
  // vim: et sw=4 sts=4