From b758f7b31ec200e321f2140618da2a4c6022d725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ot=C3=A1vio=20Pace?= Date: Wed, 3 Oct 2018 17:12:29 -0300 Subject: [PATCH] test: add registerTemplate This commit adds multiple tests for the registerTemplate function of the lib/register/template.js file. --- __tests__/register/template.test.js | 108 ++++++++++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 __tests__/register/template.test.js diff --git a/__tests__/register/template.test.js b/__tests__/register/template.test.js new file mode 100644 index 000000000..c659a5ead --- /dev/null +++ b/__tests__/register/template.test.js @@ -0,0 +1,108 @@ +/* + * Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with + * the License. A copy of the License is located at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * or in the "license" file accompanying this file. This file 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. + */ + +var assert = require('chai').assert; +var StyleDictionary = require('../../index').extend({}); + + +describe('registerTemplate', function() { + it('should error if name is not a string', function() { + assert.throws( + StyleDictionary.registerTemplate.bind(null, {}), + Error, + /Template name must be a string:/ + ); + + assert.throws( + StyleDictionary.registerTemplate.bind(null, { + name: 1, + }), + Error, + /Template name must be a string:/ + ); + + assert.throws( + StyleDictionary.registerTemplate.bind(null, { + name: [], + }), + Error, + /Template name must be a string:/ + ); + + assert.throws( + StyleDictionary.registerTemplate.bind(null, { + name: {}, + }), + Error, + /Template name must be a string:/ + ); + }); + + it('should error if path is not a string', function() { + assert.throws( + StyleDictionary.registerTemplate.bind(null, { + name: 'data', + }), + Error, + /Template path must be a string:/ + ); + + assert.throws( + StyleDictionary.registerTemplate.bind(null, { + name: 'data', + template: 1, + }), + Error, + /Template path must be a string:/ + ); + + assert.throws( + StyleDictionary.registerTemplate.bind(null, { + name: 'data', + template: [], + }), + Error, + /Template path must be a string:/ + ); + + assert.throws( + StyleDictionary.registerTemplate.bind(null, { + name: 'data', + template: {}, + }), + Error, + /Template path must be a string:/ + ); + }); + + it('should error if path is not a file', function() { + assert.throws( + StyleDictionary.registerTemplate.bind(null, { + name: 'data', + template: 'non_existent_file', + }), + Error, + /Can\'t find template: / + ); + }); + + it('should return StyleDictionary', function() { + assert( + StyleDictionary.registerTemplate.bind(null, { + name: 'data', + template: 'registerTemplate.js', + }), + StyleDictionary + ); + }); +});