7
7
using Azure . Functions . Cli . Common ;
8
8
using FluentAssertions ;
9
9
using Xunit ;
10
- using Xunit . Abstractions ;
11
10
12
11
namespace Azure . Functions . Cli . Tests . E2E . Helpers
13
12
{
14
13
public static class CliTester
15
14
{
16
15
private static string _func = System . Environment . GetEnvironmentVariable ( "FUNC_PATH" ) ;
17
- public static Task Run ( RunConfiguration runConfiguration , ITestOutputHelper output ) => Run ( new [ ] { runConfiguration } , output ) ;
16
+ public static Task Run ( RunConfiguration runConfiguration ) => Run ( new [ ] { runConfiguration } ) ;
18
17
19
- public static async Task Run ( RunConfiguration [ ] runConfigurations , ITestOutputHelper output )
18
+ public static async Task Run ( RunConfiguration [ ] runConfigurations )
20
19
{
21
20
var tempDir = Path . Combine ( Path . GetTempPath ( ) , Path . GetTempFileName ( ) . Replace ( "." , "" ) ) ;
22
21
Directory . CreateDirectory ( tempDir ) ;
23
22
try
24
23
{
25
- await InternalRun ( tempDir , runConfigurations , output ) ;
24
+ await InternalRun ( tempDir , runConfigurations ) ;
26
25
}
27
26
finally
28
27
{
@@ -34,19 +33,21 @@ public static async Task Run(RunConfiguration[] runConfigurations, ITestOutputHe
34
33
}
35
34
}
36
35
37
- private static async Task InternalRun ( string workingDir , RunConfiguration [ ] runConfigurations , ITestOutputHelper output )
36
+ private static async Task InternalRun ( string workingDir , RunConfiguration [ ] runConfigurations )
38
37
{
38
+ var stdout = new StringBuilder ( ) ;
39
+ var stderr = new StringBuilder ( ) ;
39
40
foreach ( var runConfiguration in runConfigurations )
40
41
{
41
- var stdout = new StringBuilder ( ) ;
42
- var stderr = new StringBuilder ( ) ;
42
+ stdout . Clear ( ) ;
43
+ stderr . Clear ( ) ;
43
44
var exitError = false ;
44
45
45
46
for ( var i = 0 ; i < runConfiguration . Commands . Length ; i ++ )
46
47
{
47
48
var command = runConfiguration . Commands [ i ] ;
48
49
var exe = new Executable ( _func , command , workingDirectory : workingDir ) ;
49
- output . WriteLine ( $ "Running: > { exe . Command } ") ;
50
+ Console . WriteLine ( $ "Running: > { exe . Command } ") ;
50
51
if ( runConfiguration . ExpectExit || ( i + 1 ) < runConfiguration . Commands . Length )
51
52
{
52
53
var exitCode = await exe . RunAsync ( logStd , logErr , timeout : runConfiguration . CommandTimeout ) ;
@@ -81,23 +82,22 @@ private static async Task InternalRun(string workingDir, RunConfiguration[] runC
81
82
}
82
83
83
84
AssertExitError ( runConfiguration , exitError ) ;
84
- // AssertHasStandardError(runConfiguration, stderr);
85
85
AssertFiles ( runConfiguration , workingDir ) ;
86
86
AssertDirectories ( runConfiguration , workingDir ) ;
87
87
AssertOutputContent ( runConfiguration , stdout ) ;
88
88
AssertErrorContent ( runConfiguration , stderr ) ;
89
89
90
- void logStd ( string line )
91
- {
92
- stdout . AppendLine ( line ) ;
93
- output . WriteLine ( $ "stdout: { line } ") ;
94
- }
90
+ }
91
+ void logStd ( string line )
92
+ {
93
+ stdout . AppendLine ( line ) ;
94
+ Console . WriteLine ( $ "stdout: { line } ") ;
95
+ }
95
96
96
- void logErr ( string line )
97
- {
98
- stderr . AppendLine ( line ) ;
99
- output . WriteLine ( $ "stderr: { line } ") ;
100
- }
97
+ void logErr ( string line )
98
+ {
99
+ stderr . AppendLine ( line ) ;
100
+ Console . WriteLine ( $ "stderr: { line } ") ;
101
101
}
102
102
}
103
103
0 commit comments