5
5
* This source code is licensed under the BSD-style license found in the
6
6
* LICENSE file in the root directory of this source tree. An additional grant
7
7
* of patent rights can be found in the PATENTS file in the same directory.
8
- */
9
-
10
- using System ;
11
- using System . Security . Cryptography ;
8
+ */
9
+
10
+ using System ;
11
+ using System . Security . Cryptography ;
12
12
using Moq ;
13
13
using Xunit ;
14
14
using React . Web . Mvc ;
@@ -59,31 +59,31 @@ public void ReactWithInitShouldReturnHtmlAndScript()
59
59
60
60
[ Fact ]
61
61
public void ScriptNonceIsReturned ( )
62
- {
63
- string nonce ;
64
- using ( var random = new RNGCryptoServiceProvider ( ) )
65
- {
66
- byte [ ] nonceBytes = new byte [ 16 ] ;
67
- random . GetBytes ( nonceBytes ) ;
68
- nonce = Convert . ToBase64String ( nonceBytes ) ;
69
- }
62
+ {
63
+ string nonce ;
64
+ using ( var random = new RNGCryptoServiceProvider ( ) )
65
+ {
66
+ byte [ ] nonceBytes = new byte [ 16 ] ;
67
+ random . GetBytes ( nonceBytes ) ;
68
+ nonce = Convert . ToBase64String ( nonceBytes ) ;
69
+ }
70
70
71
71
var component = new Mock < IReactComponent > ( ) ;
72
72
component . Setup ( x => x . RenderHtml ( false , false , null ) ) . Returns ( "HTML" ) ;
73
- component . Setup ( x => x . RenderJavaScript ( ) ) . Returns ( "JS" ) ;
74
-
75
- var config = new Mock < IReactSiteConfiguration > ( ) ;
76
-
77
- var environment = ConfigureMockEnvironment ( config . Object ) ;
78
-
79
- environment . Setup ( x => x . Configuration ) . Returns ( config . Object ) ;
73
+ component . Setup ( x => x . RenderJavaScript ( ) ) . Returns ( "JS" ) ;
74
+
75
+ var config = new Mock < IReactSiteConfiguration > ( ) ;
76
+
77
+ var environment = ConfigureMockEnvironment ( config . Object ) ;
78
+
79
+ environment . Setup ( x => x . Configuration ) . Returns ( config . Object ) ;
80
80
environment . Setup ( x => x . CreateComponent (
81
81
"ComponentName" ,
82
82
new { } ,
83
83
null ,
84
84
false
85
85
) ) . Returns ( component . Object ) ;
86
-
86
+
87
87
// without nonce
88
88
var result = HtmlHelperExtensions . ReactWithInit (
89
89
htmlHelper : null ,
@@ -94,11 +94,11 @@ public void ScriptNonceIsReturned()
94
94
Assert . Equal (
95
95
"HTML" + System . Environment . NewLine + "<script>JS</script>" ,
96
96
result . ToString ( )
97
- ) ;
98
-
99
- config . Setup ( x => x . ScriptNonceProvider ) . Returns ( ( ) => nonce ) ;
100
-
101
- // with nonce
97
+ ) ;
98
+
99
+ config . Setup ( x => x . ScriptNonceProvider ) . Returns ( ( ) => nonce ) ;
100
+
101
+ // with nonce
102
102
result = HtmlHelperExtensions . ReactWithInit (
103
103
htmlHelper : null ,
104
104
componentName : "ComponentName" ,
0 commit comments