Skip to content

Commit 23a1329

Browse files
committed
Remove ITestOutputHelper usage
1 parent 5631ec7 commit 23a1329

File tree

8 files changed

+59
-54
lines changed

8 files changed

+59
-54
lines changed

src/Azure.Functions.Cli/Actions/DeployActions/DeployFunctionAction.cs

+6
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,12 @@ public override async Task RunAsync()
8989
return;
9090
}
9191

92+
if (!CommandChecker.CommandExists("kubectl"))
93+
{
94+
ColoredConsole.Error.WriteLine(ErrorColor($"kubectl is required for deploying to kubernetes. Please make sure to install kubectl and try again."));
95+
return;
96+
}
97+
9298
var dockerFilePath = Path.Combine(Environment.CurrentDirectory, "Dockerfile");
9399

94100
if (!FileSystemHelpers.FileExists(dockerFilePath))

src/Azure.Functions.Cli/Common/Executable.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,14 @@ public async Task<int> RunAsync(Action<string> outputCallback = null, Action<str
8787
else
8888
{
8989
await Task.WhenAny(exitCodeTask, Task.Delay(timeout.Value));
90-
if (!exitCodeTask.IsCompleted)
90+
if (exitCodeTask.IsCompleted)
9191
{
92-
throw new Exception("Process didn't exit within specified timeout");
92+
return exitCodeTask.Result;
9393
}
9494
else
9595
{
96-
return await exitCodeTask;
96+
Process.Kill();
97+
throw new Exception("Process didn't exit within specified timeout");
9798
}
9899
}
99100
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
FROM microsoft/dotnet:2.1-sdk AS installer-env
2+
3+
COPY . /src/dotnet-function-app
4+
RUN cd /src/dotnet-function-app && \
5+
mkdir -p /home/site/wwwroot && \
6+
dotnet publish *.csproj --output /home/site/wwwroot
7+
18
FROM microsoft/azure-functions-dotnet-core2.0:2.0
29
ENV AzureWebJobsScriptRoot=/home/site/wwwroot
3-
COPY . /home/site/wwwroot
10+
11+
COPY --from=installer-env ["/home/site/wwwroot", "/home/site/wwwroot"]

src/Azure.Functions.Cli/StaticResources/Dockerfile.python.template

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,4 @@ FROM microsoft/azure-functions-python3.6:2.0
55
COPY . /home/site/wwwroot
66

77
RUN cd /home/site/wwwroot && \
8-
/bin/bash -c \
9-
"source /workers/worker_env/bin/activate &&\
10-
pip3 install -r requirements.txt"
8+
pip install -r requirements.txt

test/Azure.Functions.Cli.Tests/E2E/Helpers/CliTester.cs

+19-19
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,21 @@
77
using Azure.Functions.Cli.Common;
88
using FluentAssertions;
99
using Xunit;
10-
using Xunit.Abstractions;
1110

1211
namespace Azure.Functions.Cli.Tests.E2E.Helpers
1312
{
1413
public static class CliTester
1514
{
1615
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 });
1817

19-
public static async Task Run(RunConfiguration[] runConfigurations, ITestOutputHelper output)
18+
public static async Task Run(RunConfiguration[] runConfigurations)
2019
{
2120
var tempDir = Path.Combine(Path.GetTempPath(), Path.GetTempFileName().Replace(".", ""));
2221
Directory.CreateDirectory(tempDir);
2322
try
2423
{
25-
await InternalRun(tempDir, runConfigurations, output);
24+
await InternalRun(tempDir, runConfigurations);
2625
}
2726
finally
2827
{
@@ -34,19 +33,21 @@ public static async Task Run(RunConfiguration[] runConfigurations, ITestOutputHe
3433
}
3534
}
3635

37-
private static async Task InternalRun(string workingDir, RunConfiguration[] runConfigurations, ITestOutputHelper output)
36+
private static async Task InternalRun(string workingDir, RunConfiguration[] runConfigurations)
3837
{
38+
var stdout = new StringBuilder();
39+
var stderr = new StringBuilder();
3940
foreach (var runConfiguration in runConfigurations)
4041
{
41-
var stdout = new StringBuilder();
42-
var stderr = new StringBuilder();
42+
stdout.Clear();
43+
stderr.Clear();
4344
var exitError = false;
4445

4546
for (var i = 0; i < runConfiguration.Commands.Length; i++)
4647
{
4748
var command = runConfiguration.Commands[i];
4849
var exe = new Executable(_func, command, workingDirectory: workingDir);
49-
output.WriteLine($"Running: > {exe.Command}");
50+
Console.WriteLine($"Running: > {exe.Command}");
5051
if (runConfiguration.ExpectExit || (i + 1) < runConfiguration.Commands.Length)
5152
{
5253
var exitCode = await exe.RunAsync(logStd, logErr, timeout: runConfiguration.CommandTimeout);
@@ -81,23 +82,22 @@ private static async Task InternalRun(string workingDir, RunConfiguration[] runC
8182
}
8283

8384
AssertExitError(runConfiguration, exitError);
84-
// AssertHasStandardError(runConfiguration, stderr);
8585
AssertFiles(runConfiguration, workingDir);
8686
AssertDirectories(runConfiguration, workingDir);
8787
AssertOutputContent(runConfiguration, stdout);
8888
AssertErrorContent(runConfiguration, stderr);
8989

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+
}
9596

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}");
101101
}
102102
}
103103

test/Azure.Functions.Cli.Tests/E2E/InitTests.cs

+10-13
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,11 @@
66
using System.Threading.Tasks;
77
using Azure.Functions.Cli.Tests.E2E.Helpers;
88
using Xunit;
9-
using Xunit.Abstractions;
109

1110
namespace Azure.Functions.Cli.Tests.E2E
1211
{
13-
public class InitTests : BaseE2ETest
12+
public class InitTests
1413
{
15-
public InitTests(ITestOutputHelper output) : base(output) { }
16-
1714
[Theory]
1815
[InlineData("node")]
1916
[InlineData("java")]
@@ -42,7 +39,7 @@ public Task init_with_worker_runtime(string workerRuntime)
4239
$".vscode{Path.DirectorySeparatorChar}extensions.json",
4340
},
4441
OutputDoesntContain = new[] { "Initialized empty Git repository" }
45-
}, _output);
42+
});
4643
}
4744

4845
[Fact]
@@ -56,7 +53,7 @@ public Task init_python_app_expect_error()
5653
{
5754
"For Python function apps, you have to be running in a venv."
5855
}
59-
}, _output);
56+
});
6057
}
6158

6259
[Fact]
@@ -89,7 +86,7 @@ public Task init_dotnet_app()
8986
}
9087
}
9188
}
92-
}, _output);
89+
});
9390
}
9491

9592
[Fact]
@@ -104,7 +101,7 @@ public Task init_with_unknown_worker_runtime()
104101
{
105102
$"Worker runtime '{unknownWorkerRuntime}' is not a valid option."
106103
}
107-
}, _output);
104+
});
108105
}
109106

110107
[Fact]
@@ -117,7 +114,7 @@ public Task init_with_no_source_control()
117114
{
118115
new DirectoryResult { Name = ".git", Exists = false }
119116
},
120-
}, _output);
117+
});
121118
}
122119

123120
[Theory]
@@ -127,7 +124,7 @@ public Task init_with_Dockerfile(string workerRuntime)
127124
{
128125
return CliTester.Run(new RunConfiguration
129126
{
130-
Commands = new[] { $"init . --worker-runtime {workerRuntime} --docker" },
127+
Commands = new[] { $"init . --worker-runtime {workerRuntime} --no-source-control --docker" },
131128
CheckFiles = new[]
132129
{
133130
new FileResult
@@ -137,15 +134,15 @@ public Task init_with_Dockerfile(string workerRuntime)
137134
}
138135
},
139136
OutputContains = new[] { "Dockerfile" }
140-
}, _output);
137+
});
141138
}
142139

143140
[Fact]
144141
public Task init_csx_app()
145142
{
146143
return CliTester.Run(new RunConfiguration
147144
{
148-
Commands = new[] { "init . --worker-runtime dotnet --csx" },
145+
Commands = new[] { "init . --worker-runtime dotnet --no-source-control --csx" },
149146
CheckFiles = new FileResult[]
150147
{
151148
new FileResult
@@ -165,7 +162,7 @@ public Task init_csx_app()
165162
"Writing local.settings.json",
166163
$".vscode{Path.DirectorySeparatorChar}extensions.json",
167164
}
168-
}, _output);
165+
});
169166
}
170167
}
171168
}

test/Azure.Functions.Cli.Tests/E2E/SettingsTests.cs

+3-6
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,11 @@
33
using System.Threading.Tasks;
44
using Azure.Functions.Cli.Tests.E2E.Helpers;
55
using Xunit;
6-
using Xunit.Abstractions;
76

87
namespace Azure.Functions.Cli.Tests.E2E
98
{
10-
public class SettingsTests : BaseE2ETest
9+
public class SettingsTests
1110
{
12-
public SettingsTests(ITestOutputHelper output) : base(output) { }
13-
1411
[Fact]
1512
public Task add_setting_plain_text()
1613
{
@@ -33,7 +30,7 @@ public Task add_setting_plain_text()
3330
}
3431
}
3532
}
36-
}, _output);
33+
});
3734
}
3835

3936
[Fact]
@@ -85,7 +82,7 @@ public Task add_setting_encrypted()
8582
}
8683
}
8784
}
88-
}, _output);
85+
});
8986
}
9087
}
9188
}

test/Azure.Functions.Cli.Tests/E2E/StartTests.cs

+7-9
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,25 @@
22
using System.IO;
33
using System.Collections.Generic;
44
using System.Linq;
5+
using System.Net.Http;
56
using System.Text;
67
using System.Threading.Tasks;
78
using Azure.Functions.Cli.Tests.E2E.Helpers;
8-
using Xunit;
9-
using Xunit.Abstractions;
10-
using System.Net.Http;
119
using FluentAssertions;
10+
using Xunit;
1211

1312
namespace Azure.Functions.Cli.Tests.E2E
1413
{
15-
public class StartTests : BaseE2ETest
14+
public class StartTests
1615
{
17-
public StartTests(ITestOutputHelper output) : base(output) { }
18-
1916
[Fact]
2017
public Task start_nodejs()
2118
{
2219
return CliTester.Run(new RunConfiguration
2320
{
2421
Commands = new[]
2522
{
26-
"init . --worker-runtime node",
23+
"init . --worker-runtime node --no-source-control",
2724
"new --template \"Http trigger\" --name HttpTrigger",
2825
"start"
2926
},
@@ -40,7 +37,7 @@ public Task start_nodejs()
4037
result.Should().Be("Hello Test", because: "response from default function should be 'Hello {name}'");
4138
}
4239
},
43-
}, _output);
40+
});
4441
}
4542

4643
[Fact]
@@ -63,10 +60,11 @@ public Task start_dotnet_csharp()
6360
var response = await client.GetAsync("/api/HttpTrigger?name=Test");
6461
var result = await response.Content.ReadAsStringAsync();
6562
p.Kill();
63+
await Task.Delay(TimeSpan.FromSeconds(2));
6664
result.Should().Be("Hello, Test", because: "response from default function should be 'Hello, {name}'");
6765
}
6866
},
69-
}, _output);
67+
});
7068
}
7169
}
7270
}

0 commit comments

Comments
 (0)