const utils = require('../testing-utils.js'); const root = '../../'; jest.useFakeTimers(); describe('html-button-response', function(){ beforeEach(function(){ require(root + 'jspsych.js'); require(root + 'plugins/jspsych-html-button-response'); }); test('loads correctly', function(){ expect(typeof window.jsPsych.plugins['html-button-response']).not.toBe('undefined'); }); test('displays html stimulus', function(){ var trial = { type: 'html-button-response', stimulus: 'this is html', choices: ['button-choice'] } jsPsych.init({ timeline: [trial] }); expect(jsPsych.getDisplayElement().innerHTML).toMatch('
'); }); test('display button labels', function(){ var trial = { type: 'html-button-response', stimulus: 'this is html', choices: ['button-choice1', 'button-choice2'] } jsPsych.init({ timeline: [trial] }); expect(jsPsych.getDisplayElement().innerHTML).toMatch(new RegExp('')); expect(jsPsych.getDisplayElement().innerHTML).toMatch(new RegExp('')); }); test('display button html', function(){ var trial = { type: 'html-button-response', stimulus: 'this is html', choices: ['buttonChoice'], button_html: '', } jsPsych.init({ timeline: [trial] }); expect(jsPsych.getDisplayElement().innerHTML).toMatch(new RegExp('')); }); test('display should clear after button click', function(){ var trial = { type: 'html-button-response', stimulus: 'this is html', choices: ['button-choice'] } jsPsych.init({ timeline: [trial] }); expect(jsPsych.getDisplayElement().innerHTML).toMatch(new RegExp(' ')); utils.clickTarget(document.querySelector('#jspsych-html-button-response-button-0')); expect(jsPsych.getDisplayElement().innerHTML).toBe(''); }); test('prompt should append below button', function(){ var trial = { type: 'html-button-response', stimulus: 'this is html', choices: ['button-choice'], prompt: 'this is a prompt
' } jsPsych.init({ timeline: [trial] }); expect(jsPsych.getDisplayElement().innerHTML).toMatch('this is a prompt
') }); test('should hide stimulus if stimulus-duration is set', function(){ var trial = { type: 'html-button-response', stimulus: 'this is html', choices: ['button-choice'], stimulus_duration: 500 } jsPsych.init({ timeline: [trial] }); expect(jsPsych.getDisplayElement().querySelector('#jspsych-html-button-response-stimulus').style.visibility).toMatch(""); jest.runTimersToTime(500); expect(jsPsych.getDisplayElement().querySelector('#jspsych-html-button-response-stimulus').style.visibility).toMatch('hidden'); }); test('should end trial when trial duration is reached', function(){ var trial = { type: 'html-button-response', stimulus: 'this is html', choices: ['button-choice'], trial_duration: 500, } jsPsych.init({ timeline: [trial] }); expect(jsPsych.getDisplayElement().innerHTML).toMatch(' '); jest.runTimersToTime(500); expect(jsPsych.getDisplayElement().innerHTML).toBe(''); }); test('should end trial when button is clicked', function(){ var trial = { type: 'html-button-response', stimulus: 'this is html', choices: ['button-choice'], response_ends_trial: true, } jsPsych.init({ timeline: [trial] }); expect(jsPsych.getDisplayElement().innerHTML).toMatch(' '); utils.clickTarget(document.querySelector('#jspsych-html-button-response-button-0')); expect(jsPsych.getDisplayElement().innerHTML).toBe(''); }); test('class should have responded when button is clicked', function(){ var trial = { type: 'html-button-response', stimulus: 'this is html', choices: ['button-choice'], response_ends_trial: false, } jsPsych.init({ timeline: [trial] }); expect(jsPsych.getDisplayElement().innerHTML).toMatch(' '); utils.clickTarget(document.querySelector('#jspsych-html-button-response-button-0')); expect(document.querySelector('#jspsych-html-button-response-stimulus').className).toBe(' responded'); }); });