File: HashtagSpec.js

package info (click to toggle)
node-autolinker 1.8.3%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,344 kB
  • sloc: javascript: 6,128; makefile: 62
file content (65 lines) | stat: -rw-r--r-- 2,222 bytes parent folder | download | duplicates (3)
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
/*global Autolinker, _, describe, beforeEach, afterEach, it, expect, jasmine */
describe( "Autolinker.matcher.Hashtag", function() {
	var MatchChecker = Autolinker.match.MatchChecker,
	    matcher;

	beforeEach( function() {
		matcher = new Autolinker.matcher.Hashtag( {
			tagBuilder  : new Autolinker.AnchorTagBuilder(),
			serviceName : 'Twitter'
		} );
	} );


	describe( 'parseMatches()', function() {

		it( 'should return an empty array if there are no matches for hashtags', function() {
			expect( matcher.parseMatches( '' ) ).toEqual( [] );
			expect( matcher.parseMatches( 'asdf' ) ).toEqual( [] );
			expect( matcher.parseMatches( 'asdf#asdf.com' ) ).toEqual( [] );
		} );


		it( 'should return an array of a single hashtag match when the string is the hashtag itself', function() {
			var matches = matcher.parseMatches( '#asdf' );

			expect( matches.length ).toBe( 1 );
			MatchChecker.expectHashtagMatch( matches[ 0 ], 'Twitter', 'asdf', 0 );
		} );


		it( 'should return an array of a single hashtag match when the hashtag is in the middle of the string', function() {
			var matches = matcher.parseMatches( 'Hello #asdf my good friend' );

			expect( matches.length ).toBe( 1 );
			MatchChecker.expectHashtagMatch( matches[ 0 ], 'Twitter', 'asdf', 6 );
		} );


		it( 'should return an array of a single hashtag match when the hashtag is at the end of the string', function() {
			var matches = matcher.parseMatches( 'Hello #asdf' );

			expect( matches.length ).toBe( 1 );
			MatchChecker.expectHashtagMatch( matches[ 0 ], 'Twitter', 'asdf', 6 );
		} );


		it( 'should return an array of multiple hashtags when there are more than one within the string', function() {
			var matches = matcher.parseMatches( 'Talk to #asdf or #fdsa' );

			expect( matches.length ).toBe( 2 );
			MatchChecker.expectHashtagMatch( matches[ 0 ], 'Twitter', 'asdf', 8 );
			MatchChecker.expectHashtagMatch( matches[ 1 ], 'Twitter', 'fdsa', 17 );
		} );


		it( 'a match within parenthesis should be parsed correctly', function() {
			var matches = matcher.parseMatches( 'Hello (#asdf)' );

			expect( matches.length ).toBe( 1 );
			MatchChecker.expectHashtagMatch( matches[ 0 ], 'Twitter', 'asdf', 7 );
		} );

	} );

} );