2015-07-31 16:38:45 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* Open MCT Web, Copyright (c) 2014-2015, United States Government
|
|
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
* Administration. All rights reserved.
|
|
|
|
*
|
|
|
|
* Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
|
|
|
* Open MCT Web includes source code licensed under additional open source
|
|
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
|
|
* this source code distribution or the Licensing information page available
|
|
|
|
* at runtime from the About dialog for additional information.
|
|
|
|
*****************************************************************************/
|
2015-07-31 17:37:53 +00:00
|
|
|
/*global define,describe,it,expect,beforeEach,jasmine*/
|
2015-07-31 16:38:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SearchSpec. Created by shale on 07/31/2015.
|
|
|
|
*/
|
|
|
|
define(
|
|
|
|
["../../src/controllers/SearchController"],
|
|
|
|
function (SearchController) {
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
describe("The search controller", function () {
|
|
|
|
var mockScope,
|
|
|
|
mockSearchService,
|
2015-07-31 17:37:53 +00:00
|
|
|
mockPromise,
|
2015-08-14 20:52:57 +00:00
|
|
|
mockSearchResult,
|
|
|
|
mockDomainObject,
|
|
|
|
mockTypes,
|
2015-07-31 16:38:45 +00:00
|
|
|
controller;
|
|
|
|
|
2015-07-31 17:37:53 +00:00
|
|
|
function bigArray(size) {
|
|
|
|
var array = [],
|
|
|
|
i;
|
|
|
|
for (i = 0; i < size; i += 1) {
|
2015-08-14 20:52:57 +00:00
|
|
|
array.push(mockSearchResult);
|
2015-07-31 17:37:53 +00:00
|
|
|
}
|
|
|
|
return array;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-31 16:38:45 +00:00
|
|
|
beforeEach(function () {
|
|
|
|
mockScope = jasmine.createSpyObj(
|
|
|
|
"$scope",
|
2015-08-14 20:52:57 +00:00
|
|
|
[ "$watch" ]
|
2015-07-31 16:38:45 +00:00
|
|
|
);
|
2015-07-31 17:37:53 +00:00
|
|
|
mockScope.ngModel = {};
|
|
|
|
mockScope.ngModel.input = "test input";
|
2015-08-14 20:52:57 +00:00
|
|
|
mockScope.ngModel.checked = {};
|
|
|
|
mockScope.ngModel.checked['mock.type'] = true;
|
2015-07-31 17:37:53 +00:00
|
|
|
|
2015-07-31 16:38:45 +00:00
|
|
|
mockSearchService = jasmine.createSpyObj(
|
|
|
|
"searchService",
|
2015-08-03 17:25:23 +00:00
|
|
|
[ "query" ]
|
2015-07-31 16:38:45 +00:00
|
|
|
);
|
2015-07-31 17:37:53 +00:00
|
|
|
mockPromise = jasmine.createSpyObj(
|
|
|
|
"promise",
|
|
|
|
[ "then" ]
|
|
|
|
);
|
|
|
|
mockSearchService.query.andReturn(mockPromise);
|
2015-07-31 16:38:45 +00:00
|
|
|
|
2015-08-14 20:52:57 +00:00
|
|
|
mockTypes = [{key: 'mock.type', name: 'Mock Type', glyph: '?'}];
|
|
|
|
|
|
|
|
mockSearchResult = jasmine.createSpyObj(
|
|
|
|
"searchResult",
|
|
|
|
[ "" ]
|
|
|
|
);
|
|
|
|
mockDomainObject = jasmine.createSpyObj(
|
|
|
|
"domainObject",
|
|
|
|
[ "getModel" ]
|
|
|
|
);
|
|
|
|
mockSearchResult.object = mockDomainObject;
|
|
|
|
mockDomainObject.getModel.andReturn({name: 'Mock Object', type: 'mock.type'});
|
|
|
|
|
|
|
|
controller = new SearchController(mockScope, mockSearchService, mockTypes);
|
2015-07-31 17:37:53 +00:00
|
|
|
controller.search();
|
2015-07-31 16:38:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("sends queries to the search service", function () {
|
2015-07-31 17:37:53 +00:00
|
|
|
expect(mockSearchService.query).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("populates the results with results from the search service", function () {
|
|
|
|
expect(mockPromise.then).toHaveBeenCalledWith(jasmine.any(Function));
|
|
|
|
mockPromise.then.mostRecentCall.args[0]({hits: []});
|
2015-07-31 16:38:45 +00:00
|
|
|
|
2015-07-31 17:37:53 +00:00
|
|
|
expect(mockScope.results).toBeDefined();
|
|
|
|
});
|
|
|
|
|
2015-08-03 17:25:23 +00:00
|
|
|
it("is loading until the service's promise fufills", function () {
|
|
|
|
// Send query
|
|
|
|
controller.search();
|
|
|
|
expect(controller.isLoading()).toBeTruthy();
|
|
|
|
|
|
|
|
// Then resolve the promises
|
|
|
|
mockPromise.then.mostRecentCall.args[0]({hits: []});
|
|
|
|
expect(controller.isLoading()).toBeFalsy();
|
2015-07-31 16:38:45 +00:00
|
|
|
});
|
2015-08-03 17:25:23 +00:00
|
|
|
|
2015-07-31 16:38:45 +00:00
|
|
|
|
|
|
|
it("displays only some results when there are many", function () {
|
2015-07-31 17:37:53 +00:00
|
|
|
expect(mockPromise.then).toHaveBeenCalledWith(jasmine.any(Function));
|
|
|
|
mockPromise.then.mostRecentCall.args[0]({hits: bigArray(100)});
|
2015-07-31 16:38:45 +00:00
|
|
|
|
2015-07-31 17:37:53 +00:00
|
|
|
expect(mockScope.results).toBeDefined();
|
|
|
|
expect(mockScope.results.length).toBeLessThan(100);
|
2015-07-31 16:38:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("can load more results", function () {
|
2015-07-31 17:37:53 +00:00
|
|
|
var oldSize;
|
|
|
|
|
2015-08-14 20:52:57 +00:00
|
|
|
expect(mockPromise.then).toHaveBeenCalled();
|
2015-08-03 18:48:50 +00:00
|
|
|
mockPromise.then.mostRecentCall.args[0]({hits: bigArray(100), total: 1000});
|
2015-07-31 17:37:53 +00:00
|
|
|
oldSize = mockScope.results.length;
|
|
|
|
|
|
|
|
expect(controller.areMore()).toBeTruthy();
|
2015-07-31 16:38:45 +00:00
|
|
|
|
2015-07-31 17:37:53 +00:00
|
|
|
controller.loadMore();
|
|
|
|
expect(mockScope.results.length).toBeGreaterThan(oldSize);
|
2015-07-31 16:38:45 +00:00
|
|
|
});
|
|
|
|
|
2015-07-31 17:37:53 +00:00
|
|
|
it("sets the ngModel.search flag", function () {
|
|
|
|
// Flag should be true with nonempty input
|
|
|
|
expect(mockScope.ngModel.search).toEqual(true);
|
|
|
|
|
|
|
|
// Flag should be flase with empty input
|
|
|
|
mockScope.ngModel.input = "";
|
|
|
|
controller.search();
|
2015-08-06 17:35:57 +00:00
|
|
|
mockPromise.then.mostRecentCall.args[0]({hits: [], total: 0});
|
2015-07-31 17:37:53 +00:00
|
|
|
expect(mockScope.ngModel.search).toEqual(false);
|
|
|
|
});
|
2015-07-31 16:38:45 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|