aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests/unit/framework/foundation/stream_testing.py
blob: dd5c5b3b031b4c146f855d00592f9d248aac3e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright 2015 gRPC authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Utilities for testing stream-related code."""

from grpc.framework.foundation import stream


class TestConsumer(stream.Consumer):
    """A stream.Consumer instrumented for testing.

  Attributes:
    calls: A sequence of value-termination pairs describing the history of calls
      made on this object.
  """

    def __init__(self):
        self.calls = []

    def consume(self, value):
        """See stream.Consumer.consume for specification."""
        self.calls.append((value, False))

    def terminate(self):
        """See stream.Consumer.terminate for specification."""
        self.calls.append((None, True))

    def consume_and_terminate(self, value):
        """See stream.Consumer.consume_and_terminate for specification."""
        self.calls.append((value, True))

    def is_legal(self):
        """Reports whether or not a legal sequence of calls has been made."""
        terminated = False
        for value, terminal in self.calls:
            if terminated:
                return False
            elif terminal:
                terminated = True
            elif value is None:
                return False
        else:  # pylint: disable=useless-else-on-loop
            return True

    def values(self):
        """Returns the sequence of values that have been passed to this Consumer."""
        return [value for value, _ in self.calls if value]