Skip to content
代码片段 群组 项目
  • James Newton-King's avatar
    8afb78fb
    Add gRPC interop tests (#17040) · 8afb78fb
    James Newton-King 创作于
    
    * WIP add interop tests
    
    * Clean up
    
    * Move test project into build infrastructure
    
    * Clean up
    
    * Remove hardcoded paths
    
    * Clean up
    
    * Fix build
    
    * Add copyright notices
    
    * Update azure template
    
    * Fix build
    
    * Fix build?
    
    * Fix build?
    
    * Add gRPC interop tests to CI
    
    - Convert to using references managed by build infrastructure
    - Use produced AspNetCore.App shared framework
    - Save server logs
    - Dynamically bind to ports
    - Ensure InteropWebsite is built in the same configuration as the test project
    
    * Cleanup
    
    * Rebase fix
    
    * Include tests assets in build directory for Helix
    
    * Incorporate changes in ProcessEx
    
    * Include Grpc test in regular build
    
    * Fixup
    
    * Test
    
    * exe doesn't always exist
    
    * Capture logs on helix
    
    * Maybe this will work
    
    * There are two application started messages
    
    * Derp
    
    * Cleanup
    
    * Update directory
    
    * Add interop tests to more pipelines
    
    * mkdir
    
    Co-authored-by: default avatarJohn Luo <johluo@microsoft.com>
    未验证
    8afb78fb
    历史
    Add gRPC interop tests (#17040)
    James Newton-King 创作于
    
    * WIP add interop tests
    
    * Clean up
    
    * Move test project into build infrastructure
    
    * Clean up
    
    * Remove hardcoded paths
    
    * Clean up
    
    * Fix build
    
    * Add copyright notices
    
    * Update azure template
    
    * Fix build
    
    * Fix build?
    
    * Fix build?
    
    * Add gRPC interop tests to CI
    
    - Convert to using references managed by build infrastructure
    - Use produced AspNetCore.App shared framework
    - Save server logs
    - Dynamically bind to ports
    - Ensure InteropWebsite is built in the same configuration as the test project
    
    * Cleanup
    
    * Rebase fix
    
    * Include tests assets in build directory for Helix
    
    * Incorporate changes in ProcessEx
    
    * Include Grpc test in regular build
    
    * Fixup
    
    * Test
    
    * exe doesn't always exist
    
    * Capture logs on helix
    
    * Maybe this will work
    
    * There are two application started messages
    
    * Derp
    
    * Cleanup
    
    * Update directory
    
    * Add interop tests to more pipelines
    
    * mkdir
    
    Co-authored-by: default avatarJohn Luo <johluo@microsoft.com>
ClientProcess.cs 1.95 KiB
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System;
using System.Diagnostics;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Internal;
using Xunit.Abstractions;

namespace InteropTests.Helpers
{
    public class ClientProcess : IDisposable
    {
        private readonly Process _process;
        private readonly ProcessEx _processEx;
        private readonly TaskCompletionSource<object> _startTcs;

        public ClientProcess(ITestOutputHelper output, string path, string serverPort, string testCase)
        {
            _process = new Process();
            _process.StartInfo = new ProcessStartInfo
            {
                RedirectStandardOutput = true,
                RedirectStandardError = true,
                FileName = "dotnet",
                Arguments = @$"{path} --use_tls false --server_port {serverPort} --client_type httpclient --test_case {testCase}"
            };
            _process.EnableRaisingEvents = true;
            _process.OutputDataReceived += Process_OutputDataReceived;
            _process.Start();

            _processEx = new ProcessEx(output, _process);

            _startTcs = new TaskCompletionSource<object>(TaskCreationOptions.RunContinuationsAsynchronously);
        }

        public Task WaitForReady()
        {
            return _startTcs.Task;
        }

        public int ExitCode => _process.ExitCode;
        public Task Exited => _processEx.Exited;

        private void Process_OutputDataReceived(object sender, DataReceivedEventArgs e)
        {
            var data = e.Data;
            if (data != null)
            {
                if (data.Contains("Application started."))
                {
                    _startTcs.TrySetResult(null);
                }
            }
        }

        public void Dispose()
        {
            _processEx.Dispose();
        }
    }
}