Beispiel #1
0
        public void TestStringBandwidth()
        {
            var test = new OutputBandwithTest <string>(
                channel: _channel,
                contract: _proxy,
                dataGenerator: Helper.GenerateString,
                sendProcedure: (iterations, packet) =>
            {
                for (int i = 0; i < iterations; i++)
                {
                    _proxy.SayString(packet);
                }
            });

            _output.WriteLine("Strting serialization Test");
            _output.WriteLine("Packet [chars]" + OutputBandwithTestResults.GetTabbedHeader());

            MeasureBandWidth(test, 1, 10000);
            MeasureBandWidth(test, 100, 10000);
            MeasureBandWidth(test, 1000, 10000);
            MeasureBandWidth(test, 10000, 1000);
            MeasureBandWidth(test, 60000, 1000);
            MeasureBandWidth(test, 100000, 1000);
            MeasureBandWidth(test, 500000, 50);
            MeasureBandWidth(test, 1000000, 10);
        }
Beispiel #2
0
        public void TestProtobuffBandwidth()
        {
            var test = new OutputBandwithTest <ProtoStruct>(
                channel: _channel,
                contract: _proxy,
                dataGenerator: Helper.GenerateProtoStruct,
                sendProcedure: (iterations, packet) =>
            {
                for (int i = 0; i < iterations; i++)
                {
                    _proxy.SayProtoStructEcho(packet);
                }
            });

            _output.WriteLine("Protobuff serialization Test");
            _output.WriteLine("Packet [items]" + OutputBandwithTestResults.GetTabbedHeader());

            MeasureBandWidth(test, 1, 100000);
            MeasureBandWidth(test, 10, 100000);
            MeasureBandWidth(test, 100, 10000);
            MeasureBandWidth(test, 1000, 1000);
            MeasureBandWidth(test, 10000, 100);
            MeasureBandWidth(test, 100000, 10);
            MeasureBandWidth(test, 1000000, 3);
        }
Beispiel #3
0
        public void TestBandwidth()
        {
            var test = new OutputBandwithTest <byte[]>(
                channel: _channel,
                contract: _proxy,
                dataGenerator: Helper.GenerateArray,
                sendProcedure: (iterations, packet) =>
            {
                for (int i = 0; i < iterations; i++)
                {
                    _proxy.SayBytes(packet);
                }
            });

            _output.WriteLine("Bandwidth Test");
            _output.WriteLine("Packet [bytes]" + OutputBandwithTestResults.GetTabbedHeader());

            MeasureBandWidth(test, 1, 100000);
            MeasureBandWidth(test, 100, 10000);
            MeasureBandWidth(test, 1000, 10000);
            MeasureBandWidth(test, 60000, 1000);
            MeasureBandWidth(test, 100000, 1000);
            MeasureBandWidth(test, 500000, 500);
            MeasureBandWidth(test, 1000000, 50);
        }