Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing metadata flow for the virtual client component from CommandLine #418

Merged
merged 3 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.16.12
1.16.13
2 changes: 1 addition & 1 deletion src/VirtualClient/VirtualClient.Main/RunProfileCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ private void InitializeProfile(ExecutionProfile profile)
if (this.Metadata?.Any() == true)
{
// Command-line metadata overrides metadata in the profile itself.
profile.Parameters.AddRange(this.Metadata, true);
profile.Metadata.AddRange(this.Metadata, true);
}

if (this.Parameters?.Any() == true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,70 @@ public async Task RunProfileCommandCreatesTheExpectedProfile_DefaultScenario()
profile.Monitors.Select(a => a.Parameters["Scenario"].ToString()));
}

[Test]
public async Task RunProfileCommandAddsTheExpectedMetadataToProfile()
{
// Scenario:
// In the default scenario, a workload profile is supplied that only contains
// workloads (i.e. no specific monitors).
string profile1 = "TEST-WORKLOAD-PROFILE.json";
string defaultMonitorProfile = "MONITORS-DEFAULT.json";
List<string> profiles = new List<string> { this.mockFixture.GetProfilesPath(profile1) };
this.command.Metadata = new Dictionary<string, IConvertible>();
this.command.Metadata.Add("MetadataKey1", "MetadataValue1");
this.command.Metadata.Add("MetadataKey2", "MetadataValue2");

// Setup:
// Read the actual profile content from the local file system.
this.mockFixture.File
.Setup(file => file.ReadAllTextAsync(It.Is<string>(file => file.EndsWith(profile1)), It.IsAny<CancellationToken>()))
.ReturnsAsync(File.ReadAllText(this.mockFixture.Combine(RunProfileCommandTests.ProfilesDirectory, profile1)));

this.mockFixture.File
.Setup(file => file.ReadAllTextAsync(It.Is<string>(file => file.EndsWith(defaultMonitorProfile)), It.IsAny<CancellationToken>()))
.ReturnsAsync(File.ReadAllText(this.mockFixture.Combine(RunProfileCommandTests.ProfilesDirectory, defaultMonitorProfile)));

ExecutionProfile profile = await this.command.InitializeProfilesAsync(profiles, this.mockFixture.Dependencies, CancellationToken.None)
.ConfigureAwait(false);

bool isCommandMetadataSubset = this.command.Metadata.All(kvp =>
profile.Metadata.TryGetValue(kvp.Key, out var value) && value.Equals(kvp.Value));

Assert.IsTrue(isCommandMetadataSubset);
}

[Test]
public async Task RunProfileCommandAddsTheExpectedParametersToProfile()
{
// Scenario:
// In the default scenario, a workload profile is supplied that only contains
// workloads (i.e. no specific monitors).
string profile1 = "TEST-WORKLOAD-PROFILE.json";
string defaultMonitorProfile = "MONITORS-DEFAULT.json";
List<string> profiles = new List<string> { this.mockFixture.GetProfilesPath(profile1) };
this.command.Parameters = new Dictionary<string, IConvertible>();
this.command.Parameters.Add("ParameterKey1", "ParameterValue1");
this.command.Parameters.Add("ParameterKey2", "ParameterValue2");

// Setup:
// Read the actual profile content from the local file system.
this.mockFixture.File
.Setup(file => file.ReadAllTextAsync(It.Is<string>(file => file.EndsWith(profile1)), It.IsAny<CancellationToken>()))
.ReturnsAsync(File.ReadAllText(this.mockFixture.Combine(RunProfileCommandTests.ProfilesDirectory, profile1)));

this.mockFixture.File
.Setup(file => file.ReadAllTextAsync(It.Is<string>(file => file.EndsWith(defaultMonitorProfile)), It.IsAny<CancellationToken>()))
.ReturnsAsync(File.ReadAllText(this.mockFixture.Combine(RunProfileCommandTests.ProfilesDirectory, defaultMonitorProfile)));

ExecutionProfile profile = await this.command.InitializeProfilesAsync(profiles, this.mockFixture.Dependencies, CancellationToken.None)
.ConfigureAwait(false);

bool isCommandParametersSubset = this.command.Parameters.All(kvp =>
profile.Parameters.TryGetValue(kvp.Key, out var value) && value.Equals(kvp.Value));

Assert.IsTrue(isCommandParametersSubset);
}

[Test]
public async Task RunProfileCommandCreatesTheExpectedProfile_DefaultMonitorProfileExplicitlyDefinedScenario()
{
Expand Down
Loading