@@ -64,14 +64,16 @@ describe('ngInclude', function() {
64
64
} ) ) ;
65
65
66
66
67
- it ( 'should NOT use untrusted expressions ' , inject ( putIntoCache ( 'myUrl' , '{{name}} text' ) ,
67
+ it ( 'should NOT use untrusted URL expressions ' , inject ( putIntoCache ( 'myUrl' , '{{name}} text' ) ,
68
68
function ( $rootScope , $compile , $sce ) {
69
69
element = jqLite ( '<ng:include src="url"></ng:include>' ) ;
70
70
jqLite ( document . body ) . append ( element ) ;
71
71
element = $compile ( element ) ( $rootScope ) ;
72
72
$rootScope . name = 'chirayu' ;
73
- $rootScope . url = 'myUrl' ;
74
- expect ( $rootScope . $digest ) . toThrow ( ) ;
73
+ $rootScope . url = 'http://example.com/myUrl' ;
74
+ expect ( function ( ) { $rootScope . $digest ( ) ; } ) . toThrowMinErr (
75
+ '$sce' , 'insecurl' ,
76
+ / B l o c k e d l o a d i n g r e s o u r c e f r o m u r l n o t a l l o w e d b y \$ s c e D e l e g a t e p o l i c y . U R L : h t t p : \/ \/ e x a m p l e .c o m \/ m y U r l .* / ) ;
75
77
jqLite ( document . body ) . html ( '' ) ;
76
78
} ) ) ;
77
79
@@ -82,11 +84,14 @@ describe('ngInclude', function() {
82
84
jqLite ( document . body ) . append ( element ) ;
83
85
element = $compile ( element ) ( $rootScope ) ;
84
86
$rootScope . name = 'chirayu' ;
85
- $rootScope . url = $sce . trustAsUrl ( 'myUrl' ) ;
86
- expect ( $rootScope . $digest ) . toThrow ( ) ;
87
+ $rootScope . url = $sce . trustAsUrl ( 'http://example.com/myUrl' ) ;
88
+ expect ( function ( ) { $rootScope . $digest ( ) ; } ) . toThrowMinErr (
89
+ '$sce' , 'insecurl' ,
90
+ / B l o c k e d l o a d i n g r e s o u r c e f r o m u r l n o t a l l o w e d b y \$ s c e D e l e g a t e p o l i c y . U R L : h t t p : \/ \/ e x a m p l e .c o m \/ m y U r l .* / ) ;
87
91
jqLite ( document . body ) . html ( '' ) ;
88
92
} ) ) ;
89
93
94
+
90
95
it ( 'should remove previously included text if a falsy value is bound to src' , inject (
91
96
putIntoCache ( 'myUrl' , '{{name}}' ) ,
92
97
function ( $rootScope , $compile ) {
0 commit comments