| 
									
										
										
										
											2018-09-27 16:00:11 +05:30
										 |  |  | /* global describe it expect beforeEach */ | 
					
						
							|  |  |  | const mockAST = require('./fixtures/challenge-md-ast.json'); | 
					
						
							| 
									
										
										
										
											2020-05-05 14:50:30 +02:00
										 |  |  | const mockVideoAST = require('./fixtures/video-challenge-md-ast.json'); | 
					
						
							| 
									
										
										
										
											2018-09-27 16:00:11 +05:30
										 |  |  | const testsToData = require('./tests-to-data'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-05 14:50:30 +02:00
										 |  |  | const { mdToHTML } = testsToData; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | describe('mdToHTML', () => { | 
					
						
							|  |  |  |   it('converts Markdown to HTML', () => { | 
					
						
							|  |  |  |     // a line of text on its own is parsed as a paragraph, hence the p tags
 | 
					
						
							|  |  |  |     expect(mdToHTML('*it*')).toBe('<p><em>it</em></p>'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('preserves code language', () => { | 
					
						
							|  |  |  |     expect(mdToHTML('```js\n var x = "y";\n```')).toBe( | 
					
						
							|  |  |  |       '<pre><code class="language-js"> var x = "y";\n</code></pre>' | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-27 16:00:11 +05:30
										 |  |  | describe('tests-to-data plugin', () => { | 
					
						
							|  |  |  |   const plugin = testsToData(); | 
					
						
							|  |  |  |   let file = { data: {} }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   beforeEach(() => { | 
					
						
							|  |  |  |     file = { data: {} }; | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('returns a function', () => { | 
					
						
							|  |  |  |     expect(typeof plugin).toEqual('function'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('adds a `tests` property to `file.data`', () => { | 
					
						
							|  |  |  |     plugin(mockAST, file); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     expect('tests' in file.data).toBe(true); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('adds test objects to the tests array following a schema', () => { | 
					
						
							|  |  |  |     expect.assertions(3); | 
					
						
							|  |  |  |     plugin(mockAST, file); | 
					
						
							|  |  |  |     const testObject = file.data.tests[0]; | 
					
						
							|  |  |  |     expect(Object.keys(testObject).length).toBe(2); | 
					
						
							|  |  |  |     expect(testObject).toHaveProperty('testString'); | 
					
						
							|  |  |  |     expect(testObject).toHaveProperty('text'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-05 14:50:30 +02:00
										 |  |  |   it('should generate a question object from a video challenge AST', () => { | 
					
						
							|  |  |  |     expect.assertions(4); | 
					
						
							|  |  |  |     plugin(mockVideoAST, file); | 
					
						
							|  |  |  |     const testObject = file.data.question; | 
					
						
							|  |  |  |     expect(Object.keys(testObject).length).toBe(3); | 
					
						
							|  |  |  |     expect(testObject).toHaveProperty('text'); | 
					
						
							|  |  |  |     expect(testObject).toHaveProperty('solution'); | 
					
						
							|  |  |  |     expect(testObject).toHaveProperty('answers'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('should convert question and answer markdown into html', () => { | 
					
						
							|  |  |  |     plugin(mockVideoAST, file); | 
					
						
							|  |  |  |     const testObject = file.data.question; | 
					
						
							|  |  |  |     expect(Object.keys(testObject).length).toBe(3); | 
					
						
							|  |  |  |     expect(testObject.text).toBe( | 
					
						
							|  |  |  |       '<p>Question line one</p>\n' + | 
					
						
							|  |  |  |         `<pre><code class="language-js">  var x = 'y';\n` + | 
					
						
							|  |  |  |         '</code></pre>' | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |     expect(testObject.solution).toBe(3); | 
					
						
							|  |  |  |     expect(testObject.answers[0]).toBe('<p>inline <code>code</code></p>'); | 
					
						
							|  |  |  |     expect(testObject.answers[1]).toBe('<p>some <em>italics</em></p>'); | 
					
						
							|  |  |  |     expect(testObject.answers[2]).toBe( | 
					
						
							|  |  |  |       '<p><code> code in </code> code tags</p>' | 
					
						
							|  |  |  |     ); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-27 16:00:11 +05:30
										 |  |  |   it('should have an output to match the snapshot', () => { | 
					
						
							|  |  |  |     plugin(mockAST, file); | 
					
						
							|  |  |  |     expect(file.data).toMatchSnapshot(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-05-05 14:50:30 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   it('should match the video snapshot', () => { | 
					
						
							|  |  |  |     plugin(mockVideoAST, file); | 
					
						
							|  |  |  |     expect(file.data).toMatchSnapshot(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2018-09-27 16:00:11 +05:30
										 |  |  | }); |