pulumi/sdk/python/lib/test/langhost/util.py

298 lines
12 KiB
Python

# Copyright 2016-2018, Pulumi Corporation.
#
# 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.
"""
Utility functions and classes for testing the Python language host.
"""
from __future__ import print_function
import unittest
from collections import namedtuple
from concurrent import futures
import logging
import subprocess
from os import path
import grpc
from pulumi.runtime import proto, rpc
from pulumi.runtime.proto import resource_pb2_grpc, language_pb2_grpc
# gRPC by default logs exceptions to the root `logging` logger. We don't
# want this because it spews garbage to stderr and messes up our beautiful
# test output.
#
# To combat this, we set the root logger handler to be `NullHandler`, which is
# a logger that does nothing.
class NullHandler(logging.Handler):
def emit(self, record):
pass
logging.getLogger().addHandler(NullHandler())
class LanghostMockResourceMonitor(proto.ResourceMonitorServicer):
"""
Implementation of proto.ResourceMonitorServicer for use in tests. Tests themselves
should not have to interact with this class.
This class encapsulates all gRPC details so that test authors only have to override
the `invoke`, `read_resource`, `register_resource`, and `register_resource_outputs`
functions on `LanghostTest` in order to get custom behavior.
"""
def __init__(self, langhost_test, dryrun):
self.reg_count = 0
self.registrations = {}
self.dryrun = dryrun
self.langhost_test = langhost_test
def Invoke(self, request, context):
args = rpc.deserialize_resource_props(request.args)
failures, ret = self.langhost_test.invoke(context, request.tok, args)
return proto.InvokeResponse(failures=failures, ret=ret)
def ReadResource(self, request, context):
type_ = request.type
name = request.name
id_ = request.id
parent = request.parent
state = rpc.deserialize_resource_props(request.properties)
outs = self.langhost_test.read_resource(context, type_, name, id_,
parent, state)
if outs.has_key("properties"):
props_proto = rpc.serialize_resource_props(outs["properties"])
else:
props_proto = None
return proto.ReadResourceResponse(
urn=outs.get("urn"), properties=props_proto)
def RegisterResource(self, request, context):
type_ = request.type
name = request.name
props = rpc.deserialize_resource_props(request.object)
deps = request.dependencies
outs = {}
if type_ != "pulumi:pulumi:Stack":
outs = self.langhost_test.register_resource(
context, self.dryrun, type_, name, props, deps)
if outs.get("urn"):
urn = outs["urn"]
self.registrations[urn] = {
"type": type_,
"name": name,
"props": props
}
self.reg_count += 1
if outs.has_key("object"):
obj_proto = rpc.serialize_resource_props(outs["object"])
else:
obj_proto = None
return proto.RegisterResourceResponse(
urn=outs.get("urn"), id=outs.get("id"), object=obj_proto)
def RegisterResourceOutputs(self, request, context):
urn = request.urn
outs = rpc.deserialize_resource_props(request.outputs)
res = self.registrations.get(urn)
if res:
self.langhost_test.register_resource_outputs(
context, self.dryrun, urn, res.t, res.name, res.props, outs)
ResourceMonitorEndpoint = namedtuple('ResourceMonitorEndpoint',
['monitor', 'server', 'addr'])
LanguageHostEndpoint = namedtuple('LanguageHostEndpoint', ['process', 'addr'])
class LanghostTest(unittest.TestCase):
"""
Base class of all end-to-end tests of the Python language host.
The `run_test` method on this class executes a test by mocking the
Pulumi Engine gRPC endpoint and running the language host exactly the same
way that the Pulumi CLI will. Once the program completes and the language host
exits, `run_test` will assert the expected errors and/or resource registration
counts specified by the individual test.
Check out README.md in this directory for more details.
"""
def run_test(self,
project=None,
stack=None,
program=None,
pwd=None,
args=None,
config=None,
expected_resource_count=None,
expected_error=None,
expected_stderr_contains=None):
"""
Runs a language host test. The basic flow of a language host test is that
a test is launched using the real language host while mocking out the resource
monitor RPC interface and, once the program completes, assertions are made about
the sorts of resource monitor calls that were made.
:param project: The name of the project in which the program will run.
:param stack: The name of the stack in which the program will run.
:param program: The path to the program the langhost should execute.
:param pwd: The working directory the langhost should use when running the program.
:param args: Arguments to the program.
:param config: Configuration keys for the program.
:param expected_resource_count: The number of resources this program is expected to create.
:param expected_error: If present, the expected error that should arise when running this program.
:param expected_stderr_contains: If present, the standard error of the process should contain this string
"""
# For each test case, we'll do a preview followed by an update.
for dryrun in [True, False]:
# For these tests, we are the resource monitor. The `invoke`, `read_resource`,
# `register_resource`, and `register_resource_outputs` methods on this class
# will be used to implement the resource monitor gRPC interface. The tests
# that we spawn will connect to us directly.
monitor = self._create_mock_resource_monitor(dryrun)
# Now we'll launch the language host, which will in turn launch code that drives
# the test.
langhost = self._create_language_host()
# Run the program with the langhost we just launched.
with grpc.insecure_channel(langhost.addr) as channel:
stub = language_pb2_grpc.LanguageRuntimeStub(channel)
result = self._run_program(stub, monitor, project, stack,
program, pwd, args, config, dryrun)
# Tear down the language host process we just spun up.
langhost.process.kill()
stdout, stderr = langhost.process.communicate()
if not expected_stderr_contains and (stdout or stderr):
print("PREVIEW:" if dryrun else "UPDATE:")
print("stdout:", stdout)
print("stderr:", stderr)
# If we expected an error, assert that we saw it. Otherwise assert
# that there wasn't an error.
expected = expected_error or ""
self.assertEqual(result, expected)
if expected_stderr_contains:
if not expected_stderr_contains in stderr:
print("stderr:", stderr)
self.fail("expected stderr to contain '" + expected_stderr_contains + "'")
if expected_resource_count is not None:
self.assertEqual(expected_resource_count,
monitor.monitor.reg_count)
monitor.server.stop(0)
def invoke(self, _ctx, _token, _args):
"""
Method corresponding to the `Invoke` resource monitor RPC call.
Override for custom behavior or assertions.
Returns a tuple of a list of errors that returned and the returned
object, if the call was successful.
"""
return ([], {})
def read_resource(self, _ctx, _type, _name, _id, _parent, _state):
"""
Method corresponding to the `ReadResource` resource monitor RPC call.
Override for custom behavior or assertions.
Returns a resource that was read from existing state.
"""
return {}
def register_resource(self, _ctx, _dry_run, _type, _name, _resource,
_dependencies):
"""
Method corresponding to the `RegisterResource` resource monitor RPC call.
Override for custom behavior or assertions.
Returns a resource that was just created.
"""
return {}
def register_resource_outputs(self, _ctx, _dry_run, _urn, _type, _name,
_resource, _outputs):
"""
Method corresponding to the `RegisterResourceOutputs` resource monitor RPC call.
Override for custom behavior or assertirons.
Returns None.
"""
pass
def make_urn(self, type_, name):
"""
Makes an URN from a given resource type and name.
"""
return "%s::%s" % (type_, name)
def base_path(self):
"""
Returns the base path for language host tests.
"""
return path.dirname(__file__)
def _create_mock_resource_monitor(self, dryrun):
monitor = LanghostMockResourceMonitor(self, dryrun)
server = grpc.server(futures.ThreadPoolExecutor(max_workers=1))
resource_pb2_grpc.add_ResourceMonitorServicer_to_server(
monitor, server)
port = server.add_insecure_port(address="0.0.0.0:0")
server.start()
return ResourceMonitorEndpoint(monitor, server, "0.0.0.0:%d" % port)
def _create_language_host(self):
exec_path = path.join(path.dirname(__file__), "..", "..", "..", "cmd", "pulumi-language-python-exec")
proc = subprocess.Popen(
["pulumi-language-python", "--use-executor", exec_path],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
# The first line of output is the port that the language host gRPC server is listening on.
first_line = proc.stdout.readline()
try:
return LanguageHostEndpoint(proc, "0.0.0.0:%d" % int(first_line))
except ValueError:
proc.kill()
stdout, stderr = proc.communicate()
print("language host did not respond with port")
print("stdout: ")
print(stdout)
print("stderr: ")
print(stderr)
raise
def _run_program(self, stub, monitor, project, stack, program, pwd, args,
config, dryrun):
args = {}
args["monitor_address"] = monitor.addr
args["project"] = project or "project"
args["stack"] = stack or "stack"
args["program"] = program
if pwd:
args["pwd"] = pwd
if args:
args["args"] = args
if config:
args["config"] = config
args["dryRun"] = dryrun
request = proto.RunRequest(**args)
self.assertTrue(request.IsInitialized())
resp = stub.Run(request)
return resp.error