aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/karma-chrome-launcher/test/jsflags.spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/karma-chrome-launcher/test/jsflags.spec.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/karma-chrome-launcher/test/jsflags.spec.js51
1 files changed, 51 insertions, 0 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/karma-chrome-launcher/test/jsflags.spec.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/karma-chrome-launcher/test/jsflags.spec.js
new file mode 100644
index 00000000..53071a3d
--- /dev/null
+++ b/vnfmarket/src/main/webapp/vnfmarket/node_modules/karma-chrome-launcher/test/jsflags.spec.js
@@ -0,0 +1,51 @@
+var launcher = require('../index');
+
+describe('isJSFlags()', function() {
+ var isJSFlags = launcher.test.isJSFlags;
+
+ it('should return true if flag begins with --js-flags=', function() {
+ expect(isJSFlags('--js-flags=--expose-gc')).toBe(true);
+ expect(isJSFlags('--js-flags="--expose-gc"')).toBe(true);
+ expect(isJSFlags("--js-flags='--expose-gc'")).toBe(true);
+ });
+
+ it('should return false if flag does not begin with --js-flags=', function(){
+ expect(isJSFlags(' --js-flags=--expose-gc')).toBe(false);
+ expect(isJSFlags('--js-flags"--expose-gc"')).toBe(false);
+ expect(isJSFlags('--jsflags="--expose-gc"')).toBe(false);
+ });
+});
+
+
+describe('sanitizeJSFlags()', function() {
+ var sanitizeJSFlags = launcher.test.sanitizeJSFlags;
+
+ it('should do nothing if flags are not contained in quotes', function() {
+ expect(sanitizeJSFlags('--js-flags=--expose-gc')).toBe('--js-flags=--expose-gc');
+ });
+
+ it('should symmetrically remove single or double quote if wraps all flags', function() {
+ expect(sanitizeJSFlags("--js-flags='--expose-gc'")).toBe("--js-flags=--expose-gc");
+ expect(sanitizeJSFlags('--js-flags="--expose-gc"')).toBe('--js-flags=--expose-gc');
+ });
+
+ it('should NOT remove anything if the flags are not contained within quote', function() {
+ expect(sanitizeJSFlags('--js-flags=--expose-gc="true"')).toBe('--js-flags=--expose-gc="true"');
+ expect(sanitizeJSFlags("--js-flags=--expose-gc='true'")).toBe("--js-flags=--expose-gc='true'");
+ });
+});
+
+describe('canaryGetOptions', function() {
+ var canaryGetOptions = launcher.test.canaryGetOptions;
+
+ it('should return a merged version of --js-flags', function() {
+ var parent = jasmine.createSpy('parent').andReturn(['-incognito']);
+ var context = {};
+ var url = 'http://localhost:9876';
+ var args = {flags: ['--js-flags="--expose-gc"']};
+ expect(canaryGetOptions.call(context, url, args, parent)).toEqual([
+ '-incognito',
+ '--js-flags=--expose-gc --nocrankshaft --noopt'
+ ]);
+ });
+});