2018-07-18 09:40:26 +00:00
|
|
|
//* Copyright 2017 The Dawn Authors
|
2017-04-20 18:38:20 +00:00
|
|
|
//*
|
|
|
|
//* 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.
|
|
|
|
|
2018-07-18 13:23:06 +00:00
|
|
|
#ifndef MOCK_DAWN_H
|
|
|
|
#define MOCK_DAWN_H
|
2017-04-20 18:38:20 +00:00
|
|
|
|
|
|
|
#include <gmock/gmock.h>
|
2018-07-18 12:28:38 +00:00
|
|
|
#include <dawn/dawn.h>
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-05-29 18:33:33 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2017-05-16 20:05:51 +00:00
|
|
|
// An abstract base class representing a proc table so that API calls can be mocked. Most API calls
|
|
|
|
// are directly represented by a delete virtual method but others need minimal state tracking to be
|
|
|
|
// useful as mocks.
|
2017-04-20 18:38:20 +00:00
|
|
|
class ProcTableAsClass {
|
|
|
|
public:
|
|
|
|
virtual ~ProcTableAsClass();
|
|
|
|
|
2018-07-18 13:15:07 +00:00
|
|
|
void GetProcTableAndDevice(dawnProcTable* table, dawnDevice* device);
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-05-16 20:05:51 +00:00
|
|
|
// Creates an object that can be returned by a mocked call as in WillOnce(Return(foo)).
|
|
|
|
// It returns an object of the write type that isn't equal to any previously returned object.
|
|
|
|
// Otherwise some mock expectation could be triggered by two different objects having the same
|
|
|
|
// value.
|
2017-04-20 18:38:20 +00:00
|
|
|
{% for type in by_category["object"] %}
|
|
|
|
{{as_cType(type.name)}} GetNew{{type.name.CamelCase()}}();
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% for type in by_category["object"] %}
|
2017-05-16 20:05:51 +00:00
|
|
|
{% for method in type.methods if len(method.arguments) < 10 %}
|
2017-04-20 18:38:20 +00:00
|
|
|
virtual {{as_cType(method.return_type.name)}} {{as_MethodSuffix(type.name, method.name)}}(
|
|
|
|
{{-as_cType(type.name)}} {{as_varName(type.name)}}
|
|
|
|
{%- for arg in method.arguments -%}
|
|
|
|
, {{as_annotated_cType(arg)}}
|
|
|
|
{%- endfor -%}
|
|
|
|
) = 0;
|
|
|
|
{% endfor %}
|
2017-05-16 20:05:51 +00:00
|
|
|
virtual void {{as_MethodSuffix(type.name, Name("reference"))}}({{as_cType(type.name)}} self) = 0;
|
|
|
|
virtual void {{as_MethodSuffix(type.name, Name("release"))}}({{as_cType(type.name)}} self) = 0;
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-05-16 20:05:51 +00:00
|
|
|
// Stores callback and userdata and calls OnBuilderSetErrorCallback
|
|
|
|
{% if type.is_builder %}
|
2018-07-18 13:12:52 +00:00
|
|
|
void {{as_MethodSuffix(type.name, Name("set error callback"))}}({{as_cType(type.name)}} self, dawnBuilderErrorCallback callback, dawnCallbackUserdata userdata1, dawnCallbackUserdata userdata2);
|
2017-05-16 20:05:51 +00:00
|
|
|
{% endif %}
|
2017-04-20 18:38:20 +00:00
|
|
|
{% endfor %}
|
|
|
|
|
2017-06-09 14:51:29 +00:00
|
|
|
// Stores callback and userdata and calls the On* methods
|
2018-07-18 13:12:52 +00:00
|
|
|
void DeviceSetErrorCallback(dawnDevice self, dawnDeviceErrorCallback callback, dawnCallbackUserdata userdata);
|
|
|
|
void BufferMapReadAsync(dawnBuffer self, uint32_t start, uint32_t size, dawnBufferMapReadCallback callback, dawnCallbackUserdata userdata);
|
|
|
|
void BufferMapWriteAsync(dawnBuffer self, uint32_t start, uint32_t size, dawnBufferMapWriteCallback callback, dawnCallbackUserdata userdata);
|
2018-03-21 00:56:39 +00:00
|
|
|
|
2017-05-16 20:05:51 +00:00
|
|
|
|
|
|
|
// Special cased mockable methods
|
2018-07-18 13:12:52 +00:00
|
|
|
virtual void OnDeviceSetErrorCallback(dawnDevice device, dawnDeviceErrorCallback callback, dawnCallbackUserdata userdata) = 0;
|
|
|
|
virtual void OnBuilderSetErrorCallback(dawnBufferBuilder builder, dawnBuilderErrorCallback callback, dawnCallbackUserdata userdata1, dawnCallbackUserdata userdata2) = 0;
|
|
|
|
virtual void OnBufferMapReadAsyncCallback(dawnBuffer buffer, uint32_t start, uint32_t size, dawnBufferMapReadCallback callback, dawnCallbackUserdata userdata) = 0;
|
|
|
|
virtual void OnBufferMapWriteAsyncCallback(dawnBuffer buffer, uint32_t start, uint32_t size, dawnBufferMapWriteCallback callback, dawnCallbackUserdata userdata) = 0;
|
2017-05-16 20:05:51 +00:00
|
|
|
|
2017-05-17 15:16:00 +00:00
|
|
|
// Calls the stored callbacks
|
2018-07-18 13:12:52 +00:00
|
|
|
void CallDeviceErrorCallback(dawnDevice device, const char* message);
|
|
|
|
void CallBuilderErrorCallback(void* builder , dawnBuilderErrorStatus status, const char* message);
|
|
|
|
void CallMapReadCallback(dawnBuffer buffer, dawnBufferMapAsyncStatus status, const void* data);
|
|
|
|
void CallMapWriteCallback(dawnBuffer buffer, dawnBufferMapAsyncStatus status, void* data);
|
2017-05-17 15:16:00 +00:00
|
|
|
|
2017-05-16 20:05:51 +00:00
|
|
|
struct Object {
|
|
|
|
ProcTableAsClass* procs = nullptr;
|
2018-07-18 13:12:52 +00:00
|
|
|
dawnDeviceErrorCallback deviceErrorCallback = nullptr;
|
|
|
|
dawnBuilderErrorCallback builderErrorCallback = nullptr;
|
|
|
|
dawnBufferMapReadCallback mapReadCallback = nullptr;
|
|
|
|
dawnBufferMapWriteCallback mapWriteCallback = nullptr;
|
|
|
|
dawnCallbackUserdata userdata1 = 0;
|
|
|
|
dawnCallbackUserdata userdata2 = 0;
|
2017-05-16 20:05:51 +00:00
|
|
|
};
|
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
private:
|
2017-05-16 20:05:51 +00:00
|
|
|
// Remembers the values returned by GetNew* so they can be freed.
|
2017-11-23 21:04:26 +00:00
|
|
|
std::vector<std::unique_ptr<Object>> mObjects;
|
2017-04-20 18:38:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class MockProcTable : public ProcTableAsClass {
|
|
|
|
public:
|
2018-08-22 13:37:29 +00:00
|
|
|
MockProcTable();
|
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
{% for type in by_category["object"] %}
|
2017-05-16 20:05:51 +00:00
|
|
|
{% for method in type.methods if len(method.arguments) < 10 %}
|
2017-04-20 18:38:20 +00:00
|
|
|
MOCK_METHOD{{len(method.arguments) + 1}}(
|
|
|
|
{{-as_MethodSuffix(type.name, method.name)}},
|
|
|
|
{{as_cType(method.return_type.name)}}(
|
|
|
|
{{-as_cType(type.name)}} {{as_varName(type.name)}}
|
|
|
|
{%- for arg in method.arguments -%}
|
|
|
|
, {{as_annotated_cType(arg)}}
|
|
|
|
{%- endfor -%}
|
|
|
|
));
|
|
|
|
{% endfor %}
|
|
|
|
|
2017-05-16 20:05:51 +00:00
|
|
|
MOCK_METHOD1({{as_MethodSuffix(type.name, Name("reference"))}}, void({{as_cType(type.name)}} self));
|
|
|
|
MOCK_METHOD1({{as_MethodSuffix(type.name, Name("release"))}}, void({{as_cType(type.name)}} self));
|
2017-04-20 18:38:20 +00:00
|
|
|
{% endfor %}
|
2017-05-16 20:05:51 +00:00
|
|
|
|
2018-07-18 13:12:52 +00:00
|
|
|
MOCK_METHOD3(OnDeviceSetErrorCallback, void(dawnDevice device, dawnDeviceErrorCallback callback, dawnCallbackUserdata userdata));
|
|
|
|
MOCK_METHOD4(OnBuilderSetErrorCallback, void(dawnBufferBuilder builder, dawnBuilderErrorCallback callback, dawnCallbackUserdata userdata1, dawnCallbackUserdata userdata2));
|
|
|
|
MOCK_METHOD5(OnBufferMapReadAsyncCallback, void(dawnBuffer buffer, uint32_t start, uint32_t size, dawnBufferMapReadCallback callback, dawnCallbackUserdata userdata));
|
|
|
|
MOCK_METHOD5(OnBufferMapWriteAsyncCallback, void(dawnBuffer buffer, uint32_t start, uint32_t size, dawnBufferMapWriteCallback callback, dawnCallbackUserdata userdata));
|
2017-04-20 18:38:20 +00:00
|
|
|
};
|
|
|
|
|
2018-07-18 13:23:06 +00:00
|
|
|
#endif // MOCK_DAWN_H
|