Skip to content

Commit 256ddb3

Browse files
committed
Update documentation for controller/agent usage. Move profiles to agent folder.
1 parent 31565f5 commit 256ddb3

18 files changed

Lines changed: 1377 additions & 734 deletions

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.30
1+
2.1.31

src/VirtualClient/VirtualClient.Actions.FunctionalTests/OpenSSL/TlsOpenSslClientProfileTests.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,10 @@ namespace VirtualClient.Actions
55
{
66
using System;
77
using System.Collections.Generic;
8-
using System.Linq;
98
using System.Net;
109
using System.Runtime.InteropServices;
11-
using System.Text;
1210
using System.Threading;
1311
using System.Threading.Tasks;
14-
using Moq;
1512
using NUnit.Framework;
1613
using VirtualClient.Common;
1714
using VirtualClient.Contracts;
@@ -36,7 +33,7 @@ public void SetupFixture()
3633
}
3734

3835
[Test]
39-
[TestCase("Compete-OPENSSL-TLS.json")]
36+
[TestCase("PERF-CPU-OPENSSL-TLS.json")]
4037
public async Task TlsOpenSslClientCreatesExpectedStateAndExecutesWorkload(string profile)
4138
{
4239
List<string> expectedCommands = new List<string>();

src/VirtualClient/VirtualClient.Actions.FunctionalTests/OpenSSL/TlsOpenSslServerProfileTests.cs

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,14 @@
44
namespace VirtualClient.Actions
55
{
66
using System;
7-
using System.Collections.Generic;
87
using System.Linq;
98
using System.Net;
109
using System.Runtime.InteropServices;
11-
using System.Text;
1210
using System.Threading;
1311
using System.Threading.Tasks;
14-
using AutoFixture;
15-
using Moq;
1612
using NUnit.Framework;
17-
using VirtualClient.Common;
1813
using VirtualClient.Contracts;
19-
14+
2015
[TestFixture]
2116
[Category("Functional")]
2217
public class TlsOpenSslServerProfileTests
@@ -37,7 +32,7 @@ public void SetupFixture()
3732
}
3833

3934
[Test]
40-
[TestCase("Compete-OPENSSL-TLS.json")]
35+
[TestCase("PERF-CPU-OPENSSL-TLS.json")]
4136
public async Task TlsOpenSslServerWorkloadProfileInstallsTheExpectedDependenciesOnUnixPlatform(string profile)
4237
{
4338
// Setup the expectations for the workload
@@ -60,7 +55,7 @@ public async Task TlsOpenSslServerWorkloadProfileInstallsTheExpectedDependencies
6055
}
6156

6257
[Test]
63-
[TestCase("Compete-OPENSSL-TLS.json")]
58+
[TestCase("PERF-CPU-OPENSSL-TLS.json")]
6459
public void TlsOpenSslServerWorkloadProfileActionsWillNotBeExecutedIfTheWorkloadPackageDoesNotExist(string profile)
6560
{
6661
// We ensure the workload package does not exist.

src/VirtualClient/VirtualClient.Main/VirtualClient.Main.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
-->
5252
<Target Name="CopyProfilesToOutputDirectory" AfterTargets="Build">
5353
<ItemGroup>
54-
<ProfileFiles Include="profiles\*.*" />
54+
<ProfileFiles Include="profiles\**\*.*" />
5555
</ItemGroup>
5656

5757
<Copy SourceFiles="@(ProfileFiles)" DestinationFiles="@(ProfileFiles->'$(OutputPath)profiles\%(RecursiveDir)%(Filename)%(Extension)')" />

0 commit comments

Comments
 (0)