private static TestCase TestCaseFromJson(ILogger logger, JObject testCaseJson)
        {
            string type;

            if (!JsonHelpers.TryGetString(testCaseJson, Constants.TCJsonType, out type))
            {
                throw new Exception("Test case json is missing required property `" + Constants.TCJsonType + "`.");
            }

            TestCase testCase = null;

            switch (type)
            {
            case Constants.TCJsonTypeInteractionDeviceTwin:
                testCase = DeviceTwinTestCase.FromJson(logger, testCaseJson);
                break;

            case Constants.TCJsonTypeInteractionDirectMethod:
                testCase = DirectMethodTestCase.FromJson(logger, testCaseJson);
                break;

            default:
                throw new Exception("Test case json type is unknown `" + type + "`.");
            }

            return(testCase);
        }
Beispiel #2
0
        private static TestCase TestCaseFromJson(ILogger logger, JObject testCaseJson)
        {
            string type;

            if (!JsonHelpers.TryGetString(testCaseJson, Constants.TCJsonType, out type))
            {
                return(null);
            }

            TestCase testCase = null;

            switch (type)
            {
            case Constants.TCJsonInteractionDeviceTwin:
                testCase = DeviceTwinTestCase.FromJson(logger, testCaseJson);
                break;

            case Constants.TCJsonInteractionDirectMethod:
                testCase = DirectMethodTestCase.FromJson(logger, testCaseJson);
                break;

            case Constants.TCJsonInteractionDotNetApi:
            {
                string dotNetApiName;
                if (JsonHelpers.TryGetString(testCaseJson, Constants.TCJsonDotNetApiName, out dotNetApiName))
                {
                    switch (dotNetApiName)
                    {
                    case Constants.TCJsonSetWindowsUpdateRingAsync:
                        // testCase = SetWindowsUpdateRingAsyncTestCase.FromJson(testCaseJson);
                        break;
                    }
                }
            }
            break;
            }

            return(testCase);
        }
Beispiel #3
0
        public static DirectMethodTestCase FromJson(ILogger logger, JObject testCaseJson)
        {
            DirectMethodTestCase testCase = new DirectMethodTestCase();

            TestCase.FromJson(logger, testCaseJson, testCase);

            testCase._methodName = JsonHelpers.GetString(testCaseJson, Constants.JsonDirectMethodName);

            // Input
            testCase._parameters = JsonHelpers.GetObject(testCaseJson, Constants.TCJsonInput);

            // Output
            JObject output = JsonHelpers.GetObject(testCaseJson, Constants.TCJsonOutput);

            // Output - DeviceTwin
            JObject deviceTwin = null;

            if (JsonHelpers.TryGetObject(output, Constants.TCJsonMethodDeviceTwin, out deviceTwin))
            {
                if (JsonHelpers.TryGetObject(output, Constants.TCJsonOutputPresent, out testCase._expectedPresentReportedState))
                {
                    testCase._expectedPresentReportedState = (JObject)testCase._expectedPresentReportedState.DeepClone();
                }

                if (JsonHelpers.TryGetObject(output, Constants.TCJsonOutputAbsent, out testCase._expectedAbsentReportedState))
                {
                    testCase._expectedAbsentReportedState = (JObject)testCase._expectedAbsentReportedState.DeepClone();
                }
            }

            // Output - Direct Method Return
            JsonHelpers.TryGetToken(output, Constants.TCJsonMethodReturnJson, out testCase._expectedReturnJson);
            JsonHelpers.TryGetLong(output, Constants.TCJsonMethodReturnCode, out testCase._expectedReturnCode);

            return(testCase);
        }
Beispiel #4
0
        public static DirectMethodTestCase FromJson(ILogger logger, JObject testCaseJson)
        {
            string name;

            if (!JsonHelpers.TryGetString(testCaseJson, Constants.TCJsonName, out name))
            {
                ReportError(logger, "Missing " + Constants.TCJsonName);
                return(null);
            }

            string description;

            if (!JsonHelpers.TryGetString(testCaseJson, Constants.TCJsonDescription, out description))
            {
                ReportError(logger, "Missing " + Constants.TCJsonDescription);
                return(null);
            }

            string methodName;

            if (!JsonHelpers.TryGetString(testCaseJson, Constants.JsonDirectMethodName, out methodName))
            {
                ReportError(logger, "Missing " + Constants.JsonDirectMethodName);
                return(null);
            }

            JObject input;

            if (!JsonHelpers.TryGetObject(testCaseJson, Constants.TCJsonInput, out input))
            {
                ReportError(logger, "Missing " + Constants.TCJsonInput);
                return(null);
            }

            JObject output;
            JObject expectedPresentReportedState = null;
            JObject expectedAbsentReportedState  = null;
            JObject returnJson = null;
            JValue  returnCode = null;

            if (!JsonHelpers.TryGetObject(testCaseJson, Constants.TCJsonOutput, out output))
            {
                ReportError(logger, "Missing " + Constants.TCJsonOutput);
                return(null);
            }

            int delay = 0;

            if (!JsonHelpers.TryGetInt(output, Constants.TCJsonDelay, out delay))
            {
                delay = DefaultDelay;
            }

            JObject deviceTwin = null;

            if (JsonHelpers.TryGetObject(output, Constants.TCJsonMethodDeviceTwin, out deviceTwin))
            {
                if (JsonHelpers.TryGetObject(deviceTwin, Constants.TCJsonOutputPresent, out expectedPresentReportedState))
                {
                    expectedPresentReportedState = (JObject)expectedPresentReportedState.DeepClone();
                }

                if (JsonHelpers.TryGetObject(deviceTwin, Constants.TCJsonOutputAbsent, out expectedAbsentReportedState))
                {
                    expectedAbsentReportedState = (JObject)expectedAbsentReportedState.DeepClone();
                }
            }
            JsonHelpers.TryGetObject(output, Constants.TCJsonMethodReturnJson, out returnJson);
            JsonHelpers.TryGetValue(output, Constants.TCJsonMethodReturnCode, out returnCode);

            DirectMethodTestCase testCase = new DirectMethodTestCase();

            testCase._name        = name;
            testCase._description = description;
            testCase._delay       = delay;
            testCase._methodName  = methodName;
            testCase._parameters  = input;
            testCase._expectedPresentReportedState = expectedPresentReportedState;
            testCase._expectedAbsentReportedState  = expectedAbsentReportedState;
            testCase._expectedReturnJson           = returnJson;
            testCase._expectedReturnCode           = (int)returnCode;
            return(testCase);
        }