89 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
| import { shallowMount } from '@vue/test-utils';
 | |
| import Vue from 'vue';
 | |
| import Vuex from 'vuex';
 | |
| import DiffDiscussionReply from '~/diffs/components/diff_discussion_reply.vue';
 | |
| import ReplyPlaceholder from '~/notes/components/discussion_reply_placeholder.vue';
 | |
| import NoteSignedOutWidget from '~/notes/components/note_signed_out_widget.vue';
 | |
| 
 | |
| Vue.use(Vuex);
 | |
| 
 | |
| describe('DiffDiscussionReply', () => {
 | |
|   let wrapper;
 | |
|   let getters;
 | |
|   let store;
 | |
| 
 | |
|   const createComponent = (props = {}, slots = {}) => {
 | |
|     wrapper = shallowMount(DiffDiscussionReply, {
 | |
|       store,
 | |
|       propsData: {
 | |
|         ...props,
 | |
|       },
 | |
|       slots: {
 | |
|         ...slots,
 | |
|       },
 | |
|     });
 | |
|   };
 | |
| 
 | |
|   afterEach(() => {
 | |
|     wrapper.destroy();
 | |
|   });
 | |
| 
 | |
|   describe('if user can reply', () => {
 | |
|     beforeEach(() => {
 | |
|       getters = {
 | |
|         userCanReply: () => true,
 | |
|         getUserData: () => ({
 | |
|           path: 'test-path',
 | |
|           avatar_url: 'avatar_url',
 | |
|           name: 'John Doe',
 | |
|         }),
 | |
|       };
 | |
| 
 | |
|       store = new Vuex.Store({
 | |
|         getters,
 | |
|       });
 | |
|     });
 | |
| 
 | |
|     it('should render a form if component has form', () => {
 | |
|       createComponent(
 | |
|         {
 | |
|           renderReplyPlaceholder: false,
 | |
|           hasForm: true,
 | |
|         },
 | |
|         {
 | |
|           form: `<div id="test-form"></div>`,
 | |
|         },
 | |
|       );
 | |
| 
 | |
|       expect(wrapper.find('#test-form').exists()).toBe(true);
 | |
|     });
 | |
| 
 | |
|     it('should render a reply placeholder if there is no form', () => {
 | |
|       createComponent({
 | |
|         renderReplyPlaceholder: true,
 | |
|         hasForm: false,
 | |
|       });
 | |
| 
 | |
|       expect(wrapper.findComponent(ReplyPlaceholder).exists()).toBe(true);
 | |
|     });
 | |
|   });
 | |
| 
 | |
|   it('renders a signed out widget when user is not logged in', () => {
 | |
|     getters = {
 | |
|       userCanReply: () => false,
 | |
|       getUserData: () => null,
 | |
|     };
 | |
| 
 | |
|     store = new Vuex.Store({
 | |
|       getters,
 | |
|     });
 | |
| 
 | |
|     createComponent({
 | |
|       renderReplyPlaceholder: false,
 | |
|       hasForm: false,
 | |
|     });
 | |
| 
 | |
|     expect(wrapper.findComponent(NoteSignedOutWidget).exists()).toBe(true);
 | |
|   });
 | |
| });
 |