This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/js/directives/ui/dockerfile-path-select/dockerfile-path-select.component.spec.ts
Alec Merdler 7a352ddfbc Use ng-metadata as a Backport of Angular 2+ API (#2486)
* starting UtilService refactor

* pre find-replace angular.module('quay') => angular.module('QuayModule')

* successfully switched to ng-metadata for backported Angular2 API

* working with parent component reference in child

* fixing @Output to use EventEmitter

* fixed @Output events for custom git trigger

* more fixes

* refactored QuayPages module for backwards-compatibility

* reinitialized test.db

* use minified libraries

* replaced references for angular-ts-decorators

* fixed ng-show
2017-04-05 14:14:08 -07:00

90 lines
No EOL
2.2 KiB
TypeScript

import { DockerfilePathSelectComponent } from './dockerfile-path-select.component';
describe("DockerfilePathSelectComponent", () => {
var component: DockerfilePathSelectComponent;
var currentPath: string;
var isValidPath: boolean;
var paths: string[];
var supportsFullListing: boolean;
beforeEach(() => {
component = new DockerfilePathSelectComponent();
currentPath = '/';
isValidPath = false;
paths = ['/'];
supportsFullListing = true;
component.currentPath = currentPath;
component.isValidPath = isValidPath;
component.paths = paths;
component.supportsFullListing = supportsFullListing;
});
describe("ngOnChanges", () => {
it("sets valid path flag to true if current path is valid", () => {
component.ngOnChanges({});
expect(component.isValidPath).toBe(true);
});
it("sets valid path flag to false if current path is invalid", () => {
component.currentPath = "asdfdsf";
component.ngOnChanges({});
expect(component.isValidPath).toBe(false);
});
});
describe("setPath", () => {
var newPath: string;
beforeEach(() => {
newPath = '/conf';
});
it("sets current path to given path", () => {
component.setPath(newPath);
expect(component.currentPath).toEqual(newPath);
});
it("sets valid path flag to true if given path is valid", () => {
component.setPath(newPath);
expect(component.isValidPath).toBe(true);
});
it("sets valid path flag to false if given path is invalid", () => {
component.setPath("asdfsadfs");
expect(component.isValidPath).toBe(false);
});
});
describe("setCurrentPath", () => {
var newPath: string;
beforeEach(() => {
newPath = '/conf';
});
it("sets current path to given path", () => {
component.setSelectedPath(newPath);
expect(component.currentPath).toEqual(newPath);
});
it("sets valid path flag to true if given path is valid", () => {
component.setSelectedPath(newPath);
expect(component.isValidPath).toBe(true);
});
it("sets valid path flag to false if given path is invalid", () => {
component.setSelectedPath("a;lskjdf;ldsa");
expect(component.isValidPath).toBe(false);
});
});
});