78 lines
2.7 KiB
JavaScript
78 lines
2.7 KiB
JavaScript
import { mount } from '@vue/test-utils';
|
|
import TerminalService from 'primevue/terminalservice';
|
|
import Terminal from './Terminal.vue';
|
|
|
|
describe('Terminal.vue', () => {
|
|
it('should return valid command', async () => {
|
|
const wrapper = mount({
|
|
components: {
|
|
Terminal
|
|
},
|
|
template: `<Terminal welcomeMessage="Welcome to PrimeVue" prompt="primevue $" class="dark-demo-terminal" />`,
|
|
mounted() {
|
|
TerminalService.on('command', this.commandHandler);
|
|
},
|
|
beforeUnmount() {
|
|
TerminalService.off('command', this.commandHandler);
|
|
},
|
|
methods: {
|
|
commandHandler(text) {
|
|
let response;
|
|
let argsIndex = text.indexOf(' ');
|
|
let command = argsIndex !== -1 ? text.substring(0, argsIndex) : text;
|
|
|
|
switch (command) {
|
|
case 'd':
|
|
response = 'Valid command';
|
|
break;
|
|
|
|
default:
|
|
response = 'Unknown command: ' + command;
|
|
}
|
|
|
|
TerminalService.emit('response', response);
|
|
}
|
|
}
|
|
});
|
|
|
|
expect(wrapper.find('.p-terminal.p-component').exists()).toBe(true);
|
|
expect(wrapper.find('input.p-terminal-input').exists()).toBe(true);
|
|
});
|
|
|
|
it('should return invalid command', async () => {
|
|
const wrapper = mount({
|
|
components: {
|
|
Terminal
|
|
},
|
|
template: `<Terminal welcomeMessage="Welcome to PrimeVue" prompt="primevue $" class="dark-demo-terminal" />`,
|
|
mounted() {
|
|
TerminalService.on('command', this.commandHandler);
|
|
},
|
|
beforeUnmount() {
|
|
TerminalService.off('command', this.commandHandler);
|
|
},
|
|
methods: {
|
|
commandHandler(text) {
|
|
let response;
|
|
let argsIndex = text.indexOf(' ');
|
|
let command = argsIndex !== -1 ? text.substring(0, argsIndex) : text;
|
|
|
|
switch (command) {
|
|
case 'd':
|
|
response = 'Valid command';
|
|
break;
|
|
|
|
default:
|
|
response = 'Unknown command: ' + command;
|
|
}
|
|
|
|
TerminalService.emit('response', response);
|
|
}
|
|
}
|
|
});
|
|
|
|
expect(wrapper.find('.p-terminal.p-component').exists()).toBe(true);
|
|
expect(wrapper.find('input.p-terminal-input').exists()).toBe(true);
|
|
});
|
|
});
|