* no-implicit-coercion and no-unneeded-ternary * End every line with a semicolon * Spacing and formatting * Enabled semi-spacing * Applies npm run lint:fix to code after master merge * Fix merge issues * Switched operator-linebreak to 'before' Co-authored-by: Joshi <simplyrender@gmail.com>
		
			
				
	
	
		
			187 lines
		
	
	
		
			7.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			187 lines
		
	
	
		
			7.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/*****************************************************************************
 | 
						|
 * Open MCT, Copyright (c) 2014-2018, United States Government
 | 
						|
 * as represented by the Administrator of the National Aeronautics and Space
 | 
						|
 * Administration. All rights reserved.
 | 
						|
 *
 | 
						|
 * Open MCT 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 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.
 | 
						|
 *****************************************************************************/
 | 
						|
 | 
						|
/**
 | 
						|
 * MCTRepresentationSpec. Created by vwoeltje on 11/6/14.
 | 
						|
 */
 | 
						|
define(
 | 
						|
    ["../../src/creation/CreateAction"],
 | 
						|
    function (CreateAction) {
 | 
						|
 | 
						|
        xdescribe("The create action", function () {
 | 
						|
            var mockType,
 | 
						|
                mockParent,
 | 
						|
                mockContext,
 | 
						|
                mockDomainObject,
 | 
						|
                capabilities = {},
 | 
						|
                mockEditAction,
 | 
						|
                action;
 | 
						|
 | 
						|
            function mockPromise(value) {
 | 
						|
                return {
 | 
						|
                    then: function (callback) {
 | 
						|
                        return mockPromise(callback(value));
 | 
						|
                    }
 | 
						|
                };
 | 
						|
            }
 | 
						|
 | 
						|
            beforeEach(function () {
 | 
						|
                mockType = jasmine.createSpyObj(
 | 
						|
                    "type",
 | 
						|
                    [
 | 
						|
                        "getKey",
 | 
						|
                        "getGlyph",
 | 
						|
                        "getCssClass",
 | 
						|
                        "getName",
 | 
						|
                        "getDescription",
 | 
						|
                        "getProperties",
 | 
						|
                        "getInitialModel"
 | 
						|
                    ]
 | 
						|
                );
 | 
						|
                mockParent = jasmine.createSpyObj(
 | 
						|
                    "domainObject",
 | 
						|
                    [
 | 
						|
                        "getId",
 | 
						|
                        "getModel",
 | 
						|
                        "getCapability",
 | 
						|
                        "useCapability"
 | 
						|
                    ]
 | 
						|
                );
 | 
						|
                mockDomainObject = jasmine.createSpyObj(
 | 
						|
                    "domainObject",
 | 
						|
                    [
 | 
						|
                        "getId",
 | 
						|
                        "getModel",
 | 
						|
                        "getCapability",
 | 
						|
                        "hasCapability",
 | 
						|
                        "useCapability"
 | 
						|
                    ]
 | 
						|
                );
 | 
						|
                mockDomainObject.hasCapability.and.callFake(function (name) {
 | 
						|
                    return Boolean(capabilities[name]);
 | 
						|
                });
 | 
						|
                mockDomainObject.getCapability.and.callFake(function (name) {
 | 
						|
                    return capabilities[name];
 | 
						|
                });
 | 
						|
 | 
						|
                capabilities.action = jasmine.createSpyObj(
 | 
						|
                    "actionCapability",
 | 
						|
                    [
 | 
						|
                        "getActions",
 | 
						|
                        "perform"
 | 
						|
                    ]
 | 
						|
                );
 | 
						|
 | 
						|
                capabilities.editor = jasmine.createSpyObj(
 | 
						|
                    "editorCapability",
 | 
						|
                    [
 | 
						|
                        "edit",
 | 
						|
                        "save",
 | 
						|
                        "finish"
 | 
						|
                    ]
 | 
						|
                );
 | 
						|
 | 
						|
                mockEditAction = jasmine.createSpyObj(
 | 
						|
                    "editAction",
 | 
						|
                    [
 | 
						|
                        "perform"
 | 
						|
                    ]
 | 
						|
                );
 | 
						|
 | 
						|
                mockContext = {
 | 
						|
                    domainObject: mockParent
 | 
						|
                };
 | 
						|
                mockParent.useCapability.and.returnValue(mockDomainObject);
 | 
						|
 | 
						|
                mockType.getKey.and.returnValue("test");
 | 
						|
                mockType.getCssClass.and.returnValue("icon-telemetry");
 | 
						|
                mockType.getDescription.and.returnValue("a test type");
 | 
						|
                mockType.getName.and.returnValue("Test");
 | 
						|
                mockType.getProperties.and.returnValue([]);
 | 
						|
                mockType.getInitialModel.and.returnValue({});
 | 
						|
 | 
						|
                action = new CreateAction(
 | 
						|
                    mockType,
 | 
						|
                    mockParent,
 | 
						|
                    mockContext
 | 
						|
                );
 | 
						|
            });
 | 
						|
 | 
						|
            it("exposes type-appropriate metadata", function () {
 | 
						|
                var metadata = action.getMetadata();
 | 
						|
 | 
						|
                expect(metadata.name).toEqual("Test");
 | 
						|
                expect(metadata.description).toEqual("a test type");
 | 
						|
                expect(metadata.cssClass).toEqual("icon-telemetry");
 | 
						|
            });
 | 
						|
 | 
						|
            describe("the perform function", function () {
 | 
						|
                var promise = jasmine.createSpyObj("promise", ["then"]);
 | 
						|
                beforeEach(function () {
 | 
						|
                    capabilities.action.getActions.and.returnValue([mockEditAction]);
 | 
						|
                });
 | 
						|
 | 
						|
                it("uses the instantiation capability when performed", function () {
 | 
						|
                    action.perform();
 | 
						|
                    expect(mockParent.useCapability).toHaveBeenCalledWith("instantiation", jasmine.any(Object));
 | 
						|
                });
 | 
						|
 | 
						|
                it("uses the edit action if available", function () {
 | 
						|
                    action.perform();
 | 
						|
                    expect(mockEditAction.perform).toHaveBeenCalled();
 | 
						|
                });
 | 
						|
 | 
						|
                it("uses the save-as action if object does not have an edit action"
 | 
						|
                    + " available", function () {
 | 
						|
                    capabilities.action.getActions.and.returnValue([]);
 | 
						|
                    capabilities.action.perform.and.returnValue(mockPromise(undefined));
 | 
						|
                    capabilities.editor.save.and.returnValue(promise);
 | 
						|
                    action.perform();
 | 
						|
                    expect(capabilities.action.perform).toHaveBeenCalledWith("save-as");
 | 
						|
                });
 | 
						|
 | 
						|
                describe("uses to editor capability", function () {
 | 
						|
                    beforeEach(function () {
 | 
						|
                        capabilities.action.getActions.and.returnValue([]);
 | 
						|
                        capabilities.action.perform.and.returnValue(promise);
 | 
						|
                        capabilities.editor.save.and.returnValue(promise);
 | 
						|
                    });
 | 
						|
 | 
						|
                    it("to save the edit if user saves dialog", function () {
 | 
						|
                        action.perform();
 | 
						|
                        expect(promise.then).toHaveBeenCalled();
 | 
						|
                        promise.then.calls.mostRecent().args[0]();
 | 
						|
                        expect(capabilities.editor.save).toHaveBeenCalled();
 | 
						|
                    });
 | 
						|
 | 
						|
                    it("to finish the edit if user cancels dialog", function () {
 | 
						|
                        action.perform();
 | 
						|
                        promise.then.calls.mostRecent().args[1]();
 | 
						|
                        expect(capabilities.editor.finish).toHaveBeenCalled();
 | 
						|
                    });
 | 
						|
                });
 | 
						|
            });
 | 
						|
 | 
						|
        });
 | 
						|
    }
 | 
						|
);
 |