Skip to content

Commit

Permalink
squash dev commits
Browse files Browse the repository at this point in the history
  • Loading branch information
and-rewsmith committed Nov 30, 2021
1 parent 2f6bfb3 commit 33e61ea
Show file tree
Hide file tree
Showing 28 changed files with 325 additions and 60 deletions.
4 changes: 3 additions & 1 deletion builds/e2e/connectivity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ jobs:
customEdgeHub.image: '$(customEdgeHub.image)'
test.runtimeLogLevel: '$(test.runtimeLogLevel)'
testInfo.testName: '$(testInfo.testName)'
topology: 'SingleNode'


################################################################################
Expand Down Expand Up @@ -398,4 +399,5 @@ jobs:
customEdgeHub.image: '$(customEdgeHub.image)'
test.runtimeLogLevel: '$(test.runtimeLogLevel)'
connectivity.nested: 'false'
testInfo.testName: '$(testInfo.testName)'
testInfo.testName: '$(testInfo.testName)'
topology: 'SingleNode'
1 change: 1 addition & 0 deletions builds/e2e/nested-connectivity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ stages:
aziotis.package.filter: '$(aziotis.package.filter)'
connectivity.nested: 'true'
testInfo.testName: '$(testInfo.testName)'
topology: 'Nested'


- stage: Cleanup
Expand Down
2 changes: 2 additions & 0 deletions builds/e2e/templates/connectivity-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ parameters:
customEdgeAgent.image: ''
customEdgeHub.image: ''
test.runtimeLogLevel: ''
topology: ''
connectivity.nested: 'false'

steps:
Expand Down Expand Up @@ -143,6 +144,7 @@ steps:
-testRuntimeLogLevel "${{ parameters['test.runtimeLogLevel'] }}" \
-testInfo "$testInfo" \
-repoPath "${{ parameters['build.repo.path'] }}" \
-topology "${{ parameters['topology'] }}" \
-waitForTestComplete \
-cleanAll
Expand Down
5 changes: 4 additions & 1 deletion e2e_deployment_files/connectivity_deployment.template.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"ExperimentalFeatures__EnableUploadLogs": {
"value": "true"
},
"RuntimeLogLevel" : {
"RuntimeLogLevel": {
"value": "debug"
}
},
Expand Down Expand Up @@ -399,6 +399,9 @@
},
"TEST_INFO": {
"value": "<TestInfo>"
},
"topology": {
"value": "<Topology>"
}
},
"settings": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,12 @@
},
"TEST_INFO": {
"value": "<TestInfo>"
},
"topology": {
"value": "Nested"
},
"mqttBrokerEnabled": {
"value": "true"
}
},
"settings": {
Expand Down Expand Up @@ -726,32 +732,28 @@
"TwinTestPropertyType": "Desired",
"ExpectedSource": "twinTester1.desiredUpdated",
"ActualSource": "twinTester2.desiredReceived",
"TestDescription": "twin | desired property | amqp",
"Topology": "Nested"
"TestDescription": "twin | desired property | amqp"
},
"reportMetadata6": {
"TestReportType": "TwinCountingReport",
"TwinTestPropertyType": "Reported",
"ExpectedSource": "twinTester2.reportedReceived",
"ActualSource": "twinTester2.reportedUpdated",
"TestDescription": "twin | reported property | amqp",
"Topology": "Nested"
"TestDescription": "twin | reported property | amqp"
},
"reportMetadata7": {
"TestReportType": "TwinCountingReport",
"TwinTestPropertyType": "Desired",
"ExpectedSource": "twinTester3.desiredUpdated",
"ActualSource": "twinTester4.desiredReceived",
"TestDescription": "twin | desired property | mqtt",
"Topology": "Nested"
"TestDescription": "twin | desired property | mqtt"
},
"reportMetadata8": {
"TestReportType": "TwinCountingReport",
"TwinTestPropertyType": "Reported",
"ExpectedSource": "twinTester4.reportedReceived",
"ActualSource": "twinTester4.reportedUpdated",
"TestDescription": "twin | reported property | mqtt",
"Topology": "Nested"
"TestDescription": "twin | reported property | mqtt"
},
"reportMetadata9": {
"TestReportType": "DeploymentTestReport",
Expand All @@ -764,23 +766,20 @@
"SenderSource": "directMethodSender1.send",
"ReceiverSource": "directMethodReceiver1.receive",
"TolerancePeriod": "00:01:00",
"TestDescription": "direct method | cloud | amqp",
"Topology": "Nested"
"TestDescription": "direct method | cloud | amqp"
},
"reportMetadata11": {
"TestReportType": "DirectMethodConnectivityReport",
"SenderSource": "directMethodSender2.send",
"ReceiverSource": "directMethodReceiver2.receive",
"TolerancePeriod": "00:01:00",
"TestDescription": "direct method | cloud | mqtt",
"Topology": "Nested"
"TestDescription": "direct method | cloud | mqtt"
},
"reportMetadata12": {
"TestReportType": "DirectMethodConnectivityReport",
"SenderSource": "directMethodSender3.send",
"TolerancePeriod": "00:01:00",
"TestDescription": "edge agent ping",
"Topology": "Nested"
"TestDescription": "edge agent ping"
},
"reportMetadata15": {
"TestReportType": "NetworkControllerReport",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,9 @@
},
"testMode": {
"value": "<TestMode>"
},
"topology": {
"value": "Nested"
}
},
"settings": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,12 @@
},
"testMode": {
"value": "<TestMode>"
},
"topology": {
"value": "Nested"
},
"mqttBrokerEnabled": {
"value": "true"
}
},
"settings": {
Expand Down
6 changes: 6 additions & 0 deletions scripts/linux/trcE2ETest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ function usage() {
echo ' -restartIntervalInMins Value for long haul specifying how often a random module will restart. If specified, then "desiredModulesToRestartCSV" must be specified as well.'
echo ' -sendReportFrequency Value for long haul specifying how often TRC will send reports to LogAnalytics.'
echo " -testMode Test mode for TestResultCoordinator to start up with correct settings. Value is either 'LongHaul' or 'Connectivity'."
echo " -topology Configuration telling the TRC which topology tests are running in."
echo " -repoPath Path of the checked-out iotedge repository for getting the deployment file."
echo " -clientModuleTransportType Value for contrained long haul specifying transport type for all client modules."
echo " -trackingId Tracking id used to tag test events. Needed if running nested tests and test events are sent to TRC from L4 node. Otherwise generated."
Expand Down Expand Up @@ -211,6 +212,7 @@ function prepare_test_from_artifacts() {
sed -i -e "s@<NetworkController.RunsCount0>@${NETWORK_CONTROLLER_FREQUENCIES[2]}@g" "$deployment_working_file"

sed -i -e "s@<TestMode>@$TEST_MODE@g" "$deployment_working_file"
sed -i -e "s@<Topology>@$TOPOLOGY@g" "$deployment_working_file"

sed -i -e "s@<LogRotationMaxFile>@$log_rotation_max_file@g" "$deployment_working_file"
sed -i -e "s@<LogRotationMaxFileEdgeHub>@$log_rotation_max_file_edgehub@g" "$deployment_working_file"
Expand Down Expand Up @@ -456,6 +458,9 @@ function process_args() {
elif [ $saveNextArg -eq 47 ]; then
TRACKING_ID="$arg"
saveNextArg=0;
elif [ $saveNextArg -eq 48 ]; then
TOPOLOGY="$arg"
saveNextArg=0;
else
case "$arg" in
'-h' | '--help' ) usage;;
Expand Down Expand Up @@ -506,6 +511,7 @@ function process_args() {
'-repoPath' ) saveNextArg=45;;
'-clientModuleTransportType' ) saveNextArg=46;;
'-trackingId' ) saveNextArg=47;;
'-topology' ) saveNextArg=48;;
'-waitForTestComplete' ) WAIT_FOR_TEST_COMPLETE=1;;
'-cleanAll' ) CLEAN_ALL=1;;

Expand Down
2 changes: 1 addition & 1 deletion test/Microsoft.Azure.Devices.Edge.Test/GenericMqtt.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public async Task GenericMqttTelemetry()

Action<EdgeConfigBuilder> addMqttBrokerConfig = MqttBrokerUtil.BuildAddBrokerToDeployment(false);
Action<EdgeConfigBuilder> addNetworkControllerConfig = TestResultCoordinatorUtil.BuildAddNetworkControllerConfig(trackingId, networkControllerImage);
Action<EdgeConfigBuilder> addTestResultCoordinatorConfig = TestResultCoordinatorUtil.BuildAddTestResultCoordinatorConfig(trackingId, trcImage, GenericMqttInitiatorModuleName, GenericMqttInitiatorModuleName);
Action<EdgeConfigBuilder> addTestResultCoordinatorConfig = TestResultCoordinatorUtil.BuildAddTestResultCoordinatorConfig(trackingId, trcImage, GenericMqttInitiatorModuleName, GenericMqttInitiatorModuleName, true);
Action<EdgeConfigBuilder> addGenericMqttTesterConfig = this.BuildAddGenericMqttTesterConfig(trackingId, trcImage, genericMqttTesterImage);
Action<EdgeConfigBuilder> config = addMqttBrokerConfig + addNetworkControllerConfig + addTestResultCoordinatorConfig + addGenericMqttTesterConfig;
EdgeDeployment deployment = await this.runtime.DeployConfigurationAsync(config, token, Context.Current.NestedEdge);
Expand Down
6 changes: 3 additions & 3 deletions test/Microsoft.Azure.Devices.Edge.Test/PriorityQueues.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public async Task PriorityQueueModuleToModuleMessages()
TestInfo testInfo = this.InitTestInfo(5, 1000, true);

Action<EdgeConfigBuilder> addLoadGenConfig = this.BuildAddLoadGenConfig(trackingId, loadGenImage, testInfo, false);
Action<EdgeConfigBuilder> addTrcConfig = TestResultCoordinatorUtil.BuildAddTestResultCoordinatorConfig(trackingId, trcImage, LoadGenModuleName, RelayerModuleName);
Action<EdgeConfigBuilder> addTrcConfig = TestResultCoordinatorUtil.BuildAddTestResultCoordinatorConfig(trackingId, trcImage, LoadGenModuleName, RelayerModuleName, false);

EdgeDeployment deployment = await this.runtime.DeployConfigurationAsync(addLoadGenConfig + addTrcConfig, token, Context.Current.NestedEdge);
PriorityQueueTestStatus loadGenTestStatus = await this.PollUntilFinishedAsync(LoadGenModuleName, token);
Expand All @@ -69,7 +69,7 @@ public async Task PriorityQueueModuleToHubMessages()
var testResultReportingClient = new TestResultReportingClient { BaseUrl = "http://localhost:5001" };

Action<EdgeConfigBuilder> addLoadGenConfig = this.BuildAddLoadGenConfig(trackingId, loadGenImage, testInfo, true);
Action<EdgeConfigBuilder> addTrcConfig = TestResultCoordinatorUtil.BuildAddTestResultCoordinatorConfig(trackingId, trcImage, LoadGenModuleName, "hubtest");
Action<EdgeConfigBuilder> addTrcConfig = TestResultCoordinatorUtil.BuildAddTestResultCoordinatorConfig(trackingId, trcImage, LoadGenModuleName, "hubtest", false);
Action<EdgeConfigBuilder> addNetworkControllerConfig = TestResultCoordinatorUtil.BuildAddNetworkControllerConfig(trackingId, networkControllerImage);

EdgeDeployment deployment = await this.runtime.DeployConfigurationAsync(addLoadGenConfig + addTrcConfig + addNetworkControllerConfig, token, Context.Current.NestedEdge);
Expand Down Expand Up @@ -100,7 +100,7 @@ public async Task PriorityQueueTimeToLive()
TestInfo testInfo = this.InitTestInfo(5, 20);

Action<EdgeConfigBuilder> addLoadGenConfig = this.BuildAddLoadGenConfig(trackingId, loadGenImage, testInfo, false);
Action<EdgeConfigBuilder> addTrcConfig = TestResultCoordinatorUtil.BuildAddTestResultCoordinatorConfig(trackingId, trcImage, LoadGenModuleName, RelayerModuleName);
Action<EdgeConfigBuilder> addTrcConfig = TestResultCoordinatorUtil.BuildAddTestResultCoordinatorConfig(trackingId, trcImage, LoadGenModuleName, RelayerModuleName, false);

EdgeDeployment deployment = await this.runtime.DeployConfigurationAsync(addLoadGenConfig + addTrcConfig, token, Context.Current.NestedEdge);
PriorityQueueTestStatus loadGenTestStatus = await this.PollUntilFinishedAsync(LoadGenModuleName, token);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ public static Action<EdgeConfigBuilder> BuildAddNetworkControllerConfig(string t
});
}

public static Action<EdgeConfigBuilder> BuildAddTestResultCoordinatorConfig(string trackingId, string trcImage, string expectedSourceModuleName, string actualSourceModuleName)
public static Action<EdgeConfigBuilder> BuildAddTestResultCoordinatorConfig(
string trackingId,
string trcImage,
string expectedSourceModuleName,
string actualSourceModuleName,
bool mqttBrokerEnabled)
{
return new Action<EdgeConfigBuilder>(
builder =>
Expand All @@ -61,7 +66,8 @@ public static Action<EdgeConfigBuilder> BuildAddTestResultCoordinatorConfig(stri
("testStartDelay", "00:00:00"),
("verificationDelay", "00:00:00"),
("NetworkControllerRunProfile", "Online"),
("TEST_INFO", "key=unnecessary")
("TEST_INFO", "key=unnecessary"),
("mqttBrokerEnabled", mqttBrokerEnabled.ToString())
})
.WithSettings(new[] { ("createOptions", "{\"HostConfig\": {\"PortBindings\": {\"5001/tcp\": [{\"HostPort\": \"5001\"}]}}}") })
Expand Down
Loading

0 comments on commit 33e61ea

Please sign in to comment.