This repository was archived by the owner on Apr 12, 2024. It is now read-only.
File tree 4 files changed +27
-10
lines changed
4 files changed +27
-10
lines changed Original file line number Diff line number Diff line change 49
49
isBoolean: true,
50
50
isPromiseLike: true,
51
51
trim: true,
52
+ escapeForRegexp: true,
52
53
isElement: true,
53
54
makeMap: true,
54
55
size: true,
@@ -586,6 +587,14 @@ var trim = function(value) {
586
587
return isString ( value ) ? value . trim ( ) : value ;
587
588
} ;
588
589
590
+ // Copied from:
591
+ // http://docs.closure-library.googlecode.com/git/local_closure_goog_string_string.js.source.html#line1021
592
+ // Prereq: s is a string.
593
+ var escapeForRegexp = function ( s ) {
594
+ return s . replace ( / ( [ - ( ) \[ \] { } + ? * . $ \^ | , : # < ! \\ ] ) / g, '\\$1' ) .
595
+ replace ( / \x08 / g, '\\x08' ) ;
596
+ } ;
597
+
589
598
590
599
/**
591
600
* @ngdoc function
Original file line number Diff line number Diff line change @@ -14,15 +14,6 @@ var SCE_CONTEXTS = {
14
14
15
15
// Helper functions follow.
16
16
17
- // Copied from:
18
- // http://docs.closure-library.googlecode.com/git/closure_goog_string_string.js.source.html#line962
19
- // Prereq: s is a string.
20
- function escapeForRegexp ( s ) {
21
- return s . replace ( / ( [ - ( ) \[ \] { } + ? * . $ \^ | , : # < ! \\ ] ) / g, '\\$1' ) .
22
- replace ( / \x08 / g, '\\x08' ) ;
23
- }
24
-
25
-
26
17
function adjustMatcher ( matcher ) {
27
18
if ( matcher === 'self' ) {
28
19
return matcher ;
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ function $$TestabilityProvider() {
34
34
if ( dataBinding ) {
35
35
forEach ( dataBinding , function ( bindingName ) {
36
36
if ( opt_exactMatch ) {
37
- var matcher = new RegExp ( '(^|\\s)' + expression + '(\\s|\\||$)' ) ;
37
+ var matcher = new RegExp ( '(^|\\s)' + escapeForRegexp ( expression ) + '(\\s|\\||$)' ) ;
38
38
if ( matcher . test ( bindingName ) ) {
39
39
matches . push ( binding ) ;
40
40
}
Original file line number Diff line number Diff line change @@ -88,6 +88,23 @@ describe('$$testability', function() {
88
88
expect ( names [ 0 ] ) . toBe ( element . find ( 'li' ) [ 0 ] ) ;
89
89
} ) ;
90
90
91
+ it ( 'should find bindings with allowed special characters' , function ( ) {
92
+ element =
93
+ '<div>' +
94
+ ' <span>{{$index}}</span>' +
95
+ ' <span>{{foo.bar}}</span>' +
96
+ ' <span>{{foonbar}}</span>' +
97
+ '</div>' ;
98
+ element = $compile ( element ) ( scope ) ;
99
+ var indexes = $$testability . findBindings ( element [ 0 ] , '$index' , true ) ;
100
+ expect ( indexes . length ) . toBe ( 1 ) ;
101
+ expect ( indexes [ 0 ] ) . toBe ( element . find ( 'span' ) [ 0 ] ) ;
102
+
103
+ var foobars = $$testability . findBindings ( element [ 0 ] , 'foo.bar' , true ) ;
104
+ expect ( foobars . length ) . toBe ( 1 ) ; // it should not match {{foonbar}}
105
+ expect ( foobars [ 0 ] ) . toBe ( element . find ( 'span' ) [ 1 ] ) ;
106
+ } ) ;
107
+
91
108
it ( 'should find partial models' , function ( ) {
92
109
element =
93
110
'<div>' +
You can’t perform that action at this time.
0 commit comments