/*
 * Copyright (c) 2021 Huawei Device Co., Ltd.
 * 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.
 */

#ifndef BASE_NOTIFICATION_CES_STANDARD_CESFWK_TOOLS_TEST_MOCK_MOCK_COMMON_EVENT_STUB_H
#define BASE_NOTIFICATION_CES_STANDARD_CESFWK_TOOLS_TEST_MOCK_MOCK_COMMON_EVENT_STUB_H

#include "gmock/gmock.h"
#include <mutex>

#include "common_event_stub.h"
#include "event_log_wrapper.h"
#include "refbase.h"

namespace OHOS {
namespace EventFwk {
class MockCommonEventStub : public CommonEventStub {
public:
    static sptr<MockCommonEventStub> GetInstance();
    MOCK_METHOD4(FinishReceiver, bool(const sptr<IRemoteObject> &proxy, const int32_t &code,
                                     const std::string &receiverData, const bool &abortEvent));

    /**
     * Publishes a common event.
     *
     * @param event Indicates the common event data.
     * @param publishInfo Indicates the publish info.
     * @param commonEventListener Indicates the last subscriber to receive the ordered common event.
     * @param userId Indicates the user ID.
     * @return Returns true if success; false otherwise.
     */
    int32_t PublishCommonEvent(const CommonEventData &event, const CommonEventPublishInfo &publishinfo,
        const sptr<IRemoteObject> &commonEventListener, const int32_t &userId) override;

    /**
     * Subscribes to common events.
     *
     * @param subscribeInfo the subscribe information.
     * @param commonEventListener the subscriber object.
     * @param instanceKey Indicates the instance key
     * @return Returns true if success; false otherwise.
     */
    int32_t SubscribeCommonEvent(const CommonEventSubscribeInfo &subscribeInfo,
        const sptr<IRemoteObject> &commonEventListener, const int32_t instanceKey = 0) override;

    /**
     * Dumps the state for common event service.
     *
     * @param event the specified event.
     * @param userId the user id.
     * @param state the output result.
     * @return Returns true if success; false otherwise.
     */
    bool DumpState(const uint8_t &dumpType, const std::string &event, const int32_t &userId,
        std::vector<std::string> &state) override;

private:
    static std::mutex instanceMutex_;
    static sptr<MockCommonEventStub> instance_;
    std::shared_ptr<CommonEventSubscribeInfo> subscribeInfoPtr;
};
}  // namespace EventFwk
}  // namespace OHOS

#endif  // BASE_NOTIFICATION_CES_STANDARD_CESFWK_TOOLS_TEST_MOCK_MOCK_COMMON_EVENT_STUB_H