@@ -4,6 +4,7 @@ import plugin from '../..';
44import {
55 getHTML ,
66 getTwitchIFrameSrc ,
7+ normalizeParent ,
78 shouldTransform ,
89} from '../../transformers/Twitch' ;
910
@@ -179,18 +180,44 @@ cases(
179180 }
180181) ;
181182
183+ cases (
184+ 'normalizeParent' ,
185+ ( { normalizedParent, parent } ) => {
186+ expect ( normalizeParent ( parent ) ) . toBe ( normalizedParent ) ;
187+ } ,
188+ [
189+ { parent : 'embed.example.com' , normalizedParent : 'embed.example.com' } ,
190+ { parent : [ 'embed.example.com' ] , normalizedParent : 'embed.example.com' } ,
191+ {
192+ parent : [ 'embed.example.com' , 'streamernews.example.com' ] ,
193+ normalizedParent : 'embed.example.com&parent=streamernews.example.com' ,
194+ } ,
195+ ]
196+ ) ;
197+
182198test ( 'Gets the correct Twitch iframe' , ( ) => {
183- const html = getHTML ( 'https://twitch.tv/videos/546761743' ) ;
199+ const html = getHTML ( 'https://twitch.tv/videos/546761743' , {
200+ parent : 'embed.example.com' ,
201+ } ) ;
184202
185203 expect ( html ) . toMatchInlineSnapshot (
186- `"<iframe src=\\"https://player.twitch.tv?video=546761743\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>"`
204+ `"<iframe src=\\"https://player.twitch.tv?video=546761743&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>"`
187205 ) ;
188206} ) ;
189207
190208test ( 'Plugin can transform Twitch links' , async ( ) => {
191209 const markdownAST = getMarkdownASTForFile ( 'Twitch' ) ;
192210
193- const processedAST = await plugin ( { cache, markdownAST } ) ;
211+ const processedAST = await plugin (
212+ { cache, markdownAST } ,
213+ {
214+ services : {
215+ Twitch : {
216+ parent : 'embed.example.com' ,
217+ } ,
218+ } ,
219+ }
220+ ) ;
194221
195222 expect ( parseASTToMarkdown ( processedAST ) ) . toMatchInlineSnapshot ( `
196223 "<https://not-a-twitch-url.tv>
@@ -209,33 +236,33 @@ test('Plugin can transform Twitch links', async () => {
209236
210237 <https://clips.twitch.tv/embed?clip=PeacefulAbstrusePorcupineDansGame>
211238
212- <iframe src=\\"https://player.twitch.tv?channel=jlengstorf\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
239+ <iframe src=\\"https://player.twitch.tv?channel=jlengstorf&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
213240
214- <iframe src=\\"https://player.twitch.tv?channel=jlengstorf\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
241+ <iframe src=\\"https://player.twitch.tv?channel=jlengstorf&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
215242
216- <iframe src=\\"https://player.twitch.tv?channel=jlengstorf\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
243+ <iframe src=\\"https://player.twitch.tv?channel=jlengstorf&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
217244
218- <iframe src=\\"https://clips.twitch.tv/embed?clip=PeacefulAbstrusePorcupineDansGame\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
245+ <iframe src=\\"https://clips.twitch.tv/embed?clip=PeacefulAbstrusePorcupineDansGame&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
219246
220- <iframe src=\\"https://clips.twitch.tv/embed?clip=PeacefulAbstrusePorcupineDansGame\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
247+ <iframe src=\\"https://clips.twitch.tv/embed?clip=PeacefulAbstrusePorcupineDansGame&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
221248
222- <iframe src=\\"https://clips.twitch.tv/embed?clip=PeacefulAbstrusePorcupineDansGame\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
249+ <iframe src=\\"https://clips.twitch.tv/embed?clip=PeacefulAbstrusePorcupineDansGame&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
223250
224- <iframe src=\\"https://player.twitch.tv?collection=DHetedhyqBSVMg\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
251+ <iframe src=\\"https://player.twitch.tv?collection=DHetedhyqBSVMg&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
225252
226- <iframe src=\\"https://player.twitch.tv?collection=DHetedhyqBSVMg\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
253+ <iframe src=\\"https://player.twitch.tv?collection=DHetedhyqBSVMg&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
227254
228- <iframe src=\\"https://player.twitch.tv?collection=DHetedhyqBSVMg\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
255+ <iframe src=\\"https://player.twitch.tv?collection=DHetedhyqBSVMg&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
229256
230- <iframe src=\\"https://player.twitch.tv?collection=DHetedhyqBSVMg\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
257+ <iframe src=\\"https://player.twitch.tv?collection=DHetedhyqBSVMg&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
231258
232- <iframe src=\\"https://player.twitch.tv?collection=DHetedhyqBSVMg\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
259+ <iframe src=\\"https://player.twitch.tv?collection=DHetedhyqBSVMg&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
233260
234- <iframe src=\\"https://player.twitch.tv?video=546761743\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
261+ <iframe src=\\"https://player.twitch.tv?video=546761743&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
235262
236- <iframe src=\\"https://player.twitch.tv?video=546761743\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
263+ <iframe src=\\"https://player.twitch.tv?video=546761743&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
237264
238- <iframe src=\\"https://player.twitch.tv?video=546761743\\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
265+ <iframe src=\\"https://player.twitch.tv?video=546761743&parent=embed.example.com \\" height=\\"300\\" width=\\"100%\\" frameborder=\\"0\\" scrolling=\\"no\\" allowfullscreen></iframe>
239266 "
240267 ` ) ;
241268} ) ;
0 commit comments