-
Notifications
You must be signed in to change notification settings - Fork 120
/
markdown.spec.js
70 lines (57 loc) · 2.02 KB
/
markdown.spec.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
describe('btfMarkdown', function () {
var $compile,
$rootScope;
beforeEach(module('ngSanitize'));
beforeEach(module('btford.markdown'));
beforeEach(inject(function (_$compile_, _$rootScope_) {
$compile = _$compile_;
$rootScope = _$rootScope_;
}));
it('should work as an element', function () {
var elt = angular.element('<btf-markdown>*hi*</btf-markdown>');
$compile(elt)($rootScope);
expect(elt.html()).toBe('<p><em>hi</em></p>');
});
it('should work as an attribute', function () {
var elt = angular.element('<div btf-markdown>*hi*</div>');
$compile(elt)($rootScope);
expect(elt.html()).toBe('<p><em>hi</em></p>');
});
it('should work as an attribute with property', function () {
var elt = angular.element('<div btf-markdown="hey"></div>');
$compile(elt)($rootScope);
expect(elt.html()).toBe('');
$rootScope.hey = "*hi*";
$rootScope.$apply();
expect(elt.html()).toBe('<p><em>hi</em></p>');
});
it('should sanitize input', function () {
var elt = angular.element('<btf-markdown><script>window.hacked = true;</script></btf-markdown>');
$compile(elt)($rootScope);
expect(elt.html()).toBe('<p>window.hacked = true;</p>');
expect(window.hacked).toBeUndefined();
});
});
describe('markdownConverterProvider', function () {
var $compile,
$rootScope;
// module that adds config
angular.module('testModule', []).
config(function (markdownConverterProvider) {
markdownConverterProvider.config({
extensions: ['twitter']
});
});
beforeEach(module('ngSanitize'));
beforeEach(module('btford.markdown'));
beforeEach(module('testModule'));
beforeEach(inject(function (_$compile_, _$rootScope_) {
$compile = _$compile_;
$rootScope = _$rootScope_;
}));
it('should allow extensions', function () {
var elt = angular.element('<btf-markdown>@briantford</btf-markdown>');
$compile(elt)($rootScope);
expect(elt.html()).toBe('<p><a href="http://twitter.com/briantford">@briantford</a></p>');
})
})