ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
OpenGraphMetadataTest Class Reference
+ Inheritance diagram for OpenGraphMetadataTest:
+ Collaboration diagram for OpenGraphMetadataTest:

Public Member Functions

 testTextTag ()
 
 testLinkTag ()
 
 testAudioTag ()
 
 testImageTag ()
 
 testVideoTag ()
 
 testWebsiteTag ()
 

Protected Member Functions

 setUp ()
 
 getMockedResource (string $html)
 
 getMockedImage (string $html)
 
 getMockedUrl (string $url)
 

Protected Attributes

Factory $factory
 

Detailed Description

Member Function Documentation

◆ getMockedImage()

OpenGraphMetadataTest::getMockedImage ( string  $html)
protected

Definition at line 186 of file OpenGraphMetadataTest.php.

Referenced by testWebsiteTag().

186  : Image
187  {
188  $mock_image = $this->createMock(Image::class);
189  $mock_image->method('toHtml')->willReturn($html);
190  $mock_image->method('getTags')->willReturnCallback(
191  static function () use ($mock_image): Generator {
192  yield $mock_image;
193  }
194  );
195 
196  return $mock_image;
197  }
+ Here is the caller graph for this function:

◆ getMockedResource()

OpenGraphMetadataTest::getMockedResource ( string  $html)
protected

Definition at line 173 of file OpenGraphMetadataTest.php.

Referenced by testWebsiteTag().

173  : Resource
174  {
175  $mock_resource = $this->createMock(Resource::class);
176  $mock_resource->method('toHtml')->willReturn($html);
177  $mock_resource->method('getTags')->willReturnCallback(
178  static function () use ($mock_resource): Generator {
179  yield $mock_resource;
180  }
181  );
182 
183  return $mock_resource;
184  }
+ Here is the caller graph for this function:

◆ getMockedUrl()

OpenGraphMetadataTest::getMockedUrl ( string  $url)
protected

Definition at line 199 of file OpenGraphMetadataTest.php.

Referenced by testAudioTag(), testImageTag(), testLinkTag(), testVideoTag(), and testWebsiteTag().

199  : URI
200  {
201  $mock_url = $this->createMock(URI::class);
202  $mock_url->method('__toString')->willReturn($url);
203 
204  return $mock_url;
205  }
$url
Definition: shib_logout.php:66
+ Here is the caller graph for this function:

◆ setUp()

OpenGraphMetadataTest::setUp ( )
protected

Definition at line 36 of file OpenGraphMetadataTest.php.

References factory().

36  : void
37  {
38  $this->factory = new Factory();
39  }
factory()
+ Here is the call graph for this function:

◆ testAudioTag()

OpenGraphMetadataTest::testAudioTag ( )

Definition at line 67 of file OpenGraphMetadataTest.php.

References factory(), and getMockedUrl().

67  : void
68  {
69  $expected_url = 'test_url';
70  $expected_mime = 'test_mime_type';
71  $expected_html =
72  "<meta property=\"og:audio\" content=\"$expected_url\" />" . PHP_EOL .
73  "<meta property=\"og:audio:type\" content=\"$expected_mime\" />" . PHP_EOL;
74 
75  $audio_tag = $this->factory->audio($this->getMockedUrl($expected_url), $expected_mime);
76 
77  $this->assertEquals($expected_html, $audio_tag->toHtml());
78  }
factory()
+ Here is the call graph for this function:

◆ testImageTag()

OpenGraphMetadataTest::testImageTag ( )

Definition at line 80 of file OpenGraphMetadataTest.php.

References factory(), and getMockedUrl().

80  : void
81  {
82  $expected_url = 'test_url';
83  $expected_mime = 'test_mime_type';
84  $expected_alt = 'test_aria_label';
85  $expected_width = 200;
86  $expected_height = 100;
87  $expected_html =
88  "<meta property=\"og:image\" content=\"$expected_url\" />" . PHP_EOL .
89  "<meta property=\"og:image:type\" content=\"$expected_mime\" />" . PHP_EOL .
90  "<meta property=\"og:image:alt\" content=\"$expected_alt\" />" . PHP_EOL .
91  "<meta property=\"og:image:width\" content=\"$expected_width\" />" . PHP_EOL .
92  "<meta property=\"og:image:height\" content=\"$expected_height\" />" . PHP_EOL;
93 
94  $image_tag = $this->factory->image(
95  $this->getMockedUrl($expected_url),
96  $expected_mime,
97  $expected_alt,
98  $expected_width,
99  $expected_height
100  );
101 
102  $this->assertEquals($expected_html, $image_tag->toHtml());
103  }
factory()
+ Here is the call graph for this function:

◆ testLinkTag()

OpenGraphMetadataTest::testLinkTag ( )

Definition at line 54 of file OpenGraphMetadataTest.php.

References getMockedUrl().

54  : void
55  {
56  $property = 'test_property';
57  $value = 'test_value';
58 
59  $link_tag = new Link($property, $this->getMockedUrl($value));
60 
61  $this->assertEquals(
62  "<meta property=\"$property\" content=\"$value\" />",
63  $link_tag->toHtml()
64  );
65  }
+ Here is the call graph for this function:

◆ testTextTag()

OpenGraphMetadataTest::testTextTag ( )

Definition at line 41 of file OpenGraphMetadataTest.php.

41  : void
42  {
43  $property = 'test_property';
44  $value = 'test_value';
45 
46  $link_tag = new Text($property, $value);
47 
48  $this->assertEquals(
49  "<meta property=\"$property\" content=\"$value\" />",
50  $link_tag->toHtml()
51  );
52  }

◆ testVideoTag()

OpenGraphMetadataTest::testVideoTag ( )

Definition at line 105 of file OpenGraphMetadataTest.php.

References factory(), and getMockedUrl().

105  : void
106  {
107  $expected_url = 'test_url';
108  $expected_mime = 'test_mime_type';
109  $expected_width = 200;
110  $expected_height = 100;
111  $expected_html =
112  "<meta property=\"og:video\" content=\"$expected_url\" />" . PHP_EOL .
113  "<meta property=\"og:video:type\" content=\"$expected_mime\" />" . PHP_EOL .
114  "<meta property=\"og:video:width\" content=\"$expected_width\" />" . PHP_EOL .
115  "<meta property=\"og:video:height\" content=\"$expected_height\" />" . PHP_EOL;
116 
117  $video_tag = $this->factory->video(
118  $this->getMockedUrl($expected_url),
119  $expected_mime,
120  $expected_width,
121  $expected_height
122  );
123 
124  $this->assertEquals($expected_html, $video_tag->toHtml());
125  }
factory()
+ Here is the call graph for this function:

◆ testWebsiteTag()

OpenGraphMetadataTest::testWebsiteTag ( )

Definition at line 127 of file OpenGraphMetadataTest.php.

References factory(), getMockedImage(), getMockedResource(), and getMockedUrl().

127  : void
128  {
129  $expected_canonical_url = 'test_canonical_url';
130  $expected_image_html = 'test_image_html';
131  $expected_object_title = 'test_object_title';
132  $expected_website_name = 'test_website_name';
133  $expected_description = 'test_description';
134  $expected_locale = 'test_locale';
135  $expected_locale_alt_1 = 'test_locale_alt_1';
136  $expected_locale_alt_2 = 'test_locale_alt_2';
137  $expected_additional_resource_html_1 = 'test_additional_resource_html_1';
138  $expected_additional_resource_html_2 = 'test_additional_resource_html_2';
139 
140  $expected_html =
141  "<meta property=\"og:type\" content=\"website\" />" . PHP_EOL .
142  "<meta property=\"og:title\" content=\"test_object_title\" />" . PHP_EOL .
143  "<meta property=\"og:url\" content=\"test_canonical_url\" />" . PHP_EOL .
144  $expected_image_html . PHP_EOL .
145  "<meta property=\"og:site_title\" content=\"test_website_name\" />" . PHP_EOL .
146  "<meta property=\"og:description\" content=\"test_description\" />" . PHP_EOL .
147  "<meta property=\"og:locale\" content=\"test_locale\" />" . PHP_EOL .
148  "<meta property=\"og:locale:alternative\" content=\"test_locale_alt_1\" />" . PHP_EOL .
149  "<meta property=\"og:locale:alternative\" content=\"test_locale_alt_2\" />" . PHP_EOL .
150  $expected_additional_resource_html_1 . PHP_EOL .
151  $expected_additional_resource_html_2 . PHP_EOL;
152 
153  $website_tag = $this->factory->website(
154  $this->getMockedUrl($expected_canonical_url),
155  $this->getMockedImage($expected_image_html),
156  $expected_object_title,
157  $expected_website_name,
158  $expected_description,
159  $expected_locale,
160  [
161  $expected_locale_alt_1,
162  $expected_locale_alt_2,
163  ],
164  [
165  $this->getMockedResource($expected_additional_resource_html_1),
166  $this->getMockedResource($expected_additional_resource_html_2),
167  ]
168  );
169 
170  $this->assertEquals($expected_html, $website_tag->toHtml());
171  }
factory()
+ Here is the call graph for this function:

Field Documentation

◆ $factory

Factory OpenGraphMetadataTest::$factory
protected

Definition at line 34 of file OpenGraphMetadataTest.php.


The documentation for this class was generated from the following file: