runtime_mock.h 1.7 KB
Newer Older
J
j00502727 已提交
1 2
/******************************************************************************
 * Copyright (c) Huawei Technologies Co., Ltd. 2020. All rights reserved.
3 4 5 6
 * iSulad licensed under the Mulan PSL v2.
 * You can use this software according to the terms and conditions of the Mulan PSL v2.
 * You may obtain a copy of Mulan PSL v2 at:
 *     http://license.coscl.org.cn/MulanPSL2
J
j00502727 已提交
7 8 9
 * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR
 * PURPOSE.
10
 * See the Mulan PSL v2 for more details.
J
j00502727 已提交
11 12 13 14 15 16 17 18 19
 * Author: jikui
 * Create: 2020-02-25
 * Description: provide runtime mock
 ******************************************************************************/

#ifndef RUNTIME_MOCK_H_
#define RUNTIME_MOCK_H_

#include <gmock/gmock.h>
20
#include "runtime_api.h"
J
j00502727 已提交
21 22 23 24 25 26 27 28 29

class MockRuntime {
public:
    MOCK_METHOD3(RuntimePause, int(const char *name, const char *runtime, const rt_pause_params_t *params));
    MOCK_METHOD3(RuntimeResume, int(const char *name, const char *runtime, const rt_resume_params_t *params));
    MOCK_METHOD3(RuntimeUpdate, int(const char *name, const char *runtime, const rt_update_params_t *params));
    MOCK_METHOD3(RuntimeResize, int(const char *name, const char *runtime, const rt_resize_params_t *params));
    MOCK_METHOD3(RuntimeExecResize, int(const char *name, const char *runtime, const rt_exec_resize_params_t *params));
    MOCK_METHOD4(RuntimeResourcesStats, int(const char *name, const char *runtime, const rt_stats_params_t *params,
30
                                            struct runtime_container_resources_stats_info *rs_stats));
J
j00502727 已提交
31 32
};

33
void MockRuntime_SetMock(MockRuntime *mock);
J
j00502727 已提交
34 35

#endif