import './index';

describe('Client', () => {
    describe('Component vnClientDmsCreate', () => {
        let controller;
        let $scope;
        let $httpBackend;
        let $httpParamSerializer;

        beforeEach(ngModule('client'));

        beforeEach(inject(($componentController, $rootScope, _$httpBackend_, _$httpParamSerializer_) => {
            $scope = $rootScope.$new();
            $httpBackend = _$httpBackend_;
            $httpParamSerializer = _$httpParamSerializer_;
            const $element = angular.element('<vn-client-create></vn-client-create>');
            controller = $componentController('vnClientDmsCreate', {$element, $scope});
            controller._client = {id: 101, name: 'Bruce wayne'};
        }));

        describe('client() setter', () => {
            it('should set the client data and then call setDefaultParams() and getAllowedContentTypes()', () => {
                jest.spyOn(controller, 'setDefaultParams');
                jest.spyOn(controller, 'getAllowedContentTypes');
                controller.client = {
                    id: 15,
                    name: 'Bruce wayne'
                };

                expect(controller.client).toBeDefined();
                expect(controller.setDefaultParams).toHaveBeenCalledWith();
                expect(controller.getAllowedContentTypes).toHaveBeenCalledWith();
            });
        });

        describe('setDefaultParams()', () => {
            it('should perform a GET query and define the dms property on controller', () => {
                const params = {filter: {
                    where: {code: 'paymentsLaw'}
                }};
                let serializedParams = $httpParamSerializer(params);
                $httpBackend.expect('GET', `DmsTypes/findOne?${serializedParams}`).respond({id: 12, code: 'paymentsLaw'});
                controller.setDefaultParams();
                $httpBackend.flush();

                expect(controller.dms).toBeDefined();
                expect(controller.dms.reference).toEqual(101);
                expect(controller.dms.dmsTypeId).toEqual(12);
            });
        });

        describe('onFileChange()', () => {
            it('should set dms hasFileAttached property to true if has any files', () => {
                const files = [{id: 1, name: 'MyFile'}];
                controller.onFileChange(files);
                $scope.$apply();

                expect(controller.dms.hasFileAttached).toBeTruthy();
            });
        });

        describe('getAllowedContentTypes()', () => {
            it('should make an HTTP GET request to get the allowed content types', () => {
                const expectedResponse = ['image/png', 'image/jpg'];
                $httpBackend.expect('GET', `clientDms/allowedContentTypes`).respond(expectedResponse);
                controller.getAllowedContentTypes();
                $httpBackend.flush();

                expect(controller.allowedContentTypes).toBeDefined();
                expect(controller.allowedContentTypes).toEqual('image/png, image/jpg');
            });
        });
    });
});