mirror of
https://github.com/jspsych/jsPsych.git
synced 2025-05-11 16:18:11 +00:00
148 lines
3.6 KiB
JavaScript
148 lines
3.6 KiB
JavaScript
const root = '../../';
|
|
const utils = require('../testing-utils.js');
|
|
|
|
jest.useFakeTimers();
|
|
|
|
describe('image-keyboard-response', function(){
|
|
|
|
beforeEach(function(){
|
|
require(root + 'jspsych.js');
|
|
require(root + 'plugins/jspsych-image-keyboard-response');
|
|
});
|
|
|
|
test('loads correctly', function(){
|
|
expect(typeof window.jsPsych.plugins['image-keyboard-response']).not.toBe('undefined');
|
|
});
|
|
|
|
test('displays image stimulus', function(){
|
|
var trial = {
|
|
type: 'image-keyboard-response',
|
|
stimulus: '../media/blue.png'
|
|
}
|
|
|
|
jsPsych.init({
|
|
timeline: [trial],
|
|
auto_preload: false
|
|
});
|
|
|
|
expect(jsPsych.getDisplayElement().innerHTML).toMatch('<img src=\"../media/blue.png\" id=\"jspsych-image-keyboard-response-stimulus\"');
|
|
|
|
utils.pressKey(70);
|
|
});
|
|
|
|
test('display clears after key press', function(){
|
|
var trial = {
|
|
type: 'image-keyboard-response',
|
|
stimulus: '../media/blue.png',
|
|
choices: ['f','j'],
|
|
}
|
|
|
|
jsPsych.init({
|
|
timeline: [trial],
|
|
auto_preload: false
|
|
});
|
|
|
|
expect(jsPsych.getDisplayElement().innerHTML).toMatch('<img src="../media/blue.png" id="jspsych-image-keyboard-response-stimulus"');
|
|
|
|
utils.pressKey(70);
|
|
|
|
expect(jsPsych.getDisplayElement().innerHTML).toBe('');
|
|
});
|
|
|
|
test('prompt should append html', function(){
|
|
var trial = {
|
|
type: 'image-keyboard-response',
|
|
stimulus: '../media/blue.png',
|
|
choices: ['f','j'],
|
|
prompt: '<div id="foo">this is a prompt</div>'
|
|
}
|
|
|
|
jsPsych.init({
|
|
timeline: [trial],
|
|
auto_preload: false
|
|
});
|
|
|
|
expect(jsPsych.getDisplayElement().innerHTML).toMatch('<div id="foo">this is a prompt</div>');
|
|
utils.pressKey(70);
|
|
});
|
|
|
|
test('should hide stimulus if stimulus-duration is set', function(){
|
|
var trial = {
|
|
type: 'image-keyboard-response',
|
|
stimulus: '../media/blue.png',
|
|
choices:['f','j'],
|
|
stimulus_duration: 500,
|
|
}
|
|
|
|
jsPsych.init({
|
|
timeline: [trial],
|
|
auto_preload: false
|
|
});
|
|
|
|
expect(jsPsych.getDisplayElement().querySelector('#jspsych-image-keyboard-response-stimulus').style.visibility).toMatch("");
|
|
jest.runTimersToTime(500);
|
|
expect(jsPsych.getDisplayElement().querySelector('#jspsych-image-keyboard-response-stimulus').style.visibility).toMatch("hidden");
|
|
utils.pressKey(70);
|
|
|
|
});
|
|
|
|
test('should end trial when trial duration is reached', function(){
|
|
var trial = {
|
|
type: 'image-keyboard-response',
|
|
stimulus: '../media/blue.png',
|
|
choices: ['f','j'],
|
|
trial_duration: 500
|
|
}
|
|
|
|
jsPsych.init({
|
|
timeline: [trial],
|
|
auto_preload: false
|
|
});
|
|
|
|
expect(jsPsych.getDisplayElement().innerHTML).toMatch('<img src="../media/blue.png" id="jspsych-image-keyboard-response-stimulus"');
|
|
jest.runTimersToTime(500);
|
|
expect(jsPsych.getDisplayElement().innerHTML).toBe('');
|
|
});
|
|
|
|
test('should end trial when key is pressed', function(){
|
|
var trial = {
|
|
type:'image-keyboard-response',
|
|
stimulus: '../media/blue.png',
|
|
choices: ['f','j'],
|
|
response_ends_trial: true,
|
|
}
|
|
|
|
jsPsych.init({
|
|
timeline: [trial],
|
|
auto_preload: false
|
|
});
|
|
|
|
expect(jsPsych.getDisplayElement().innerHTML).toMatch('<img src="../media/blue.png" id="jspsych-image-keyboard-response-stimulus"');
|
|
|
|
utils.pressKey(70);
|
|
|
|
expect(jsPsych.getDisplayElement().innerHTML).toBe('');
|
|
});
|
|
|
|
|
|
test('should show console warning when trial duration is null and response ends trial is false', function() {
|
|
const spy = jest.spyOn(console, 'warn').mockImplementation();
|
|
|
|
var trial = {
|
|
type: 'image-keyboard-response',
|
|
stimulus: '../media/blue.png',
|
|
choices: ['f','j'],
|
|
response_ends_trial: false,
|
|
trial_duration: null
|
|
};
|
|
|
|
jsPsych.init({
|
|
timeline: [trial],
|
|
auto_preload: false
|
|
});
|
|
|
|
expect(spy).toHaveBeenCalled();
|
|
spy.mockRestore();
|
|
});
|
|
});
|