/* * Copyright (c) 2023 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 OHOS_DISTRIBUTEDDATA_SERVICE_TEST_CURSOR_MOCK_H #define OHOS_DISTRIBUTEDDATA_SERVICE_TEST_CURSOR_MOCK_H #include #include #include #include "store/cursor.h" #include "store/general_value.h" namespace OHOS { namespace DistributedData { class CursorMock : public DistributedData::Cursor { public: using ResultSet = std::vector>; explicit CursorMock(std::shared_ptr resultSet); ~CursorMock(); int32_t GetColumnNames(std::vector &names) const override; int32_t GetColumnName(int32_t col, std::string &name) const override; int32_t GetColumnType(int32_t col) const override; int32_t GetCount() const override; int32_t MoveToFirst() override; int32_t MoveToNext() override; int32_t MoveToPrev() override; int32_t GetEntry(DistributedData::VBucket &entry) override; int32_t GetRow(DistributedData::VBucket &data) override; int32_t Get(int32_t col, DistributedData::Value &value) override; int32_t Get(const std::string &col, DistributedData::Value &value) override; int32_t Close() override; bool IsEnd() override; private: std::shared_ptr resultSet_; int32_t index_ = 0; }; } // namespace DistributedData } // namespace OHOS #endif // OHOS_DISTRIBUTEDDATA_SERVICE_TEST_CURSOR_MOCK_H