-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from Stabzs/master
Merge from Stabzs/master for #152
- Loading branch information
Showing
7 changed files
with
310 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
node_modules | ||
components | ||
bower_components | ||
coverage | ||
|
||
# IntelliJ | ||
.idea/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
// Karma configuration | ||
// Generated on Wed Oct 21 2015 12:37:04 GMT-0600 (Mountain Daylight Time) | ||
|
||
module.exports = function (config) { | ||
config.set({ | ||
|
||
// base path that will be used to resolve all patterns (eg. files, exclude) | ||
basePath: '', | ||
|
||
|
||
// frameworks to use | ||
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter | ||
frameworks: ['jasmine'], | ||
|
||
|
||
// list of files / patterns to load in the browser | ||
files: [ | ||
'https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.js', | ||
'https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-mocks.js', | ||
'toaster.js', | ||
'test/**/*Spec.js' | ||
], | ||
|
||
|
||
// list of files to exclude | ||
exclude: [ | ||
], | ||
|
||
|
||
// preprocess matching files before serving them to the browser | ||
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor | ||
preprocessors: { | ||
'toaster.js': ['coverage'] | ||
}, | ||
|
||
|
||
// test results reporter to use | ||
// possible values: 'dots', 'progress' | ||
// available reporters: https://npmjs.org/browse/keyword/karma-reporter | ||
reporters: ['progress', 'coverage'], | ||
|
||
|
||
// web server port | ||
port: 9876, | ||
|
||
|
||
// enable / disable colors in the output (reporters and logs) | ||
colors: true, | ||
|
||
|
||
// level of logging | ||
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG | ||
logLevel: config.LOG_INFO, | ||
|
||
|
||
// enable / disable watching file and executing tests whenever any file changes | ||
autoWatch: true, | ||
|
||
|
||
// start these browsers | ||
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher | ||
browsers: ['Chrome'], | ||
|
||
plugins: [ | ||
'karma-chrome-launcher', | ||
'karma-coverage', | ||
'karma-jasmine' | ||
], | ||
|
||
// Continuous Integration mode | ||
// if true, Karma captures browsers, runs the tests and exits | ||
singleRun: false, | ||
|
||
coverageReporter: { | ||
type: 'html', | ||
dir: 'coverage/' | ||
} | ||
}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
/* global describe global it global beforeEach global angular global inject global expect */ | ||
|
||
'use strict'; | ||
|
||
describe('directiveTemplate', function () { | ||
createDirectives(); | ||
|
||
var toaster, scope, $compile; | ||
|
||
beforeEach(function () { | ||
// load dependencies | ||
module('testApp'); | ||
module('toaster') | ||
|
||
// inject the toaster service | ||
inject(function (_toaster_, _$rootScope_, _$compile_) { | ||
toaster = _toaster_; | ||
scope = _$rootScope_; | ||
$compile = _$compile_; | ||
}); | ||
}); | ||
|
||
it('should load and render the referenced directive template text', function () { | ||
var container = compileContainer(); | ||
pop({ type: 'info', body: 'bind-template-only', bodyOutputType: 'directive' }); | ||
|
||
expect(container[0].innerText).toBe('×here is some great new text! It was brought in via directive!'); | ||
}); | ||
|
||
it('should bind directiveData to the directive template', function () { | ||
var container = compileContainer(); | ||
pop({ type: 'info', body: 'bind-template-with-data', bodyOutputType: 'directive', directiveData: { name: 'Bob' } }); | ||
|
||
expect(container[0].innerText).toBe('×Hello Bob'); | ||
}); | ||
|
||
it('should parse type string directiveData to an object', function () { | ||
var container = compileContainer(); | ||
pop({ type: 'info', body: 'bind-template-with-data', bodyOutputType: 'directive', directiveData: '{ "name": "Bob" }' }); | ||
|
||
expect(container[0].innerText).toBe('×Hello Bob'); | ||
}); | ||
|
||
it('should render type number directiveData', function () { | ||
var container = compileContainer(); | ||
pop({ type: 'info', body: 'bind-template-with-numeric-data', bodyOutputType: 'directive', directiveData: 2 }); | ||
|
||
expect(container[0].innerText).toBe('×1 + 1 = 2'); | ||
}); | ||
|
||
it('should bind Attribute-restricted templates', function () { | ||
var container = compileContainer(); | ||
pop({ type: 'info', body: 'bind-template-only', bodyOutputType: 'directive', directiveData: { name: 'Bob' } }); | ||
|
||
expect(container[0].innerText).toBe('×here is some great new text! It was brought in via directive!'); | ||
}); | ||
|
||
it('should bind unrestricted templates', function () { | ||
var container = compileContainer(); | ||
pop({ type: 'info', body: 'unrestricted-template', bodyOutputType: 'directive' }); | ||
|
||
expect(container[0].innerText).toBe('×Unrestricted Template'); | ||
}); | ||
|
||
it('should not bind Element-restricted templates', function () { | ||
var container = compileContainer(); | ||
pop({ type: 'info', body: 'element-template', bodyOutputType: 'directive' }); | ||
|
||
expect(container[0].innerText).toBe('×'); | ||
expect(container[0].innerText).not.toBe('×Element Template'); | ||
}); | ||
|
||
it('should not bind Class-restricted templates', function () { | ||
var container = compileContainer(); | ||
pop({ type: 'info', body: 'class-template', bodyOutputType: 'directive' }); | ||
|
||
expect(container[0].innerText).toBe('×'); | ||
expect(container[0].innerText).not.toBe('×Class Template'); | ||
}); | ||
|
||
it('should throw an error if directiveName argument is not passed via body', function () { | ||
var container = compileContainer(); | ||
var hasError = false; | ||
|
||
expect(container[0].innerText).toBe(''); | ||
|
||
try { | ||
pop({ type: 'info', bodyOutputType: 'directive' }); | ||
} catch (e) { | ||
expect(e.message).toBe('A valid directive name must be provided via the toast body argument when using bodyOutputType: directive'); | ||
hasError = true; | ||
} | ||
|
||
expect(container[0].innerText).toBe('×'); | ||
expect(hasError).toBe(true); | ||
}); | ||
|
||
it('should throw an error if directiveName argument is an empty string', function () { | ||
var container = compileContainer(); | ||
var hasError = false; | ||
|
||
expect(container[0].innerText).toBe(''); | ||
|
||
try { | ||
pop({ type: 'info', body: '', bodyOutputType: 'directive' }); | ||
} catch (e) { | ||
expect(e.message).toBe('A valid directive name must be provided via the toast body argument when using bodyOutputType: directive'); | ||
hasError = true; | ||
} | ||
|
||
expect(container[0].innerText).toBe('×'); | ||
expect(hasError).toBe(true); | ||
}); | ||
|
||
it('should throw an error if the directive could not be found', function () { | ||
var hasError = false; | ||
|
||
compileContainer(); | ||
|
||
try { | ||
pop({ type: 'info', body: 'non-existent-directive', bodyOutputType: 'directive' }); | ||
} catch (e) { | ||
expect(e.message).toBe('non-existent-directive could not be found.'); | ||
hasError = true; | ||
} | ||
|
||
expect(hasError).toBe(true); | ||
}); | ||
|
||
|
||
function compileContainer() { | ||
var element = angular.element('<toaster-container></toaster-container>'); | ||
$compile(element)(scope); | ||
scope.$digest(); | ||
|
||
return element; | ||
} | ||
|
||
function pop(params) { | ||
toaster.pop(params); | ||
|
||
// force new toast to be rendered | ||
scope.$digest(); | ||
} | ||
|
||
function createDirectives() { | ||
angular.module('testApp', []) | ||
.directive('bindTemplateOnly', function () { | ||
return { | ||
restrict: 'A', | ||
template: 'here is some great new text! <span style="color:orange">It was brought in via directive!</span>' | ||
} | ||
}) | ||
.directive('bindTemplateWithData', function () { | ||
return { template: 'Hello {{directiveData.name}}' } | ||
}) | ||
.directive('bindTemplateWithNumericData', function () { | ||
return { template: '1 + 1 = {{directiveData}}' } | ||
}) | ||
.directive('elementTemplate', function () { | ||
return { restrict: 'E', template: 'Element Template' } | ||
}) | ||
.directive('classTemplate', function () { | ||
return { restrict: 'C', template: 'Class Template' } | ||
}) | ||
.directive('unrestrictedTemplate', function () { | ||
return { template: 'Unrestricted Template' } | ||
}); | ||
} | ||
}) |
Oops, something went wrong.