Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_with_custom_mwms.hpp « search_tests_support « search - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: baed6cab9d73b038873b15c6bbe13f2b4db53116 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#pragma once

#include "editor/editable_feature_source.hpp"
#include "editor/editor_tests_support/helpers.hpp"

#include "generator/generator_tests_support/test_with_custom_mwms.hpp"

#include "search/editor_delegate.hpp"

#include "indexer/feature.hpp"

#include "base/assert.hpp"
#include "base/stl_add.hpp"

#include <utility>

namespace search
{
namespace tests_support
{
class TestWithCustomMwms : public generator::tests_support::TestWithCustomMwms
{
public:
  TestWithCustomMwms()
  {
    editor::tests_support::SetUpEditorForTesting(my::make_unique<EditorDelegate>(m_dataSource));
  }

  ~TestWithCustomMwms() override { editor::tests_support::TearDownEditorForTesting(); }

  template <typename EditorFn>
  void EditFeature(FeatureID const & id, EditorFn && fn)
  {
    DataSource::FeaturesLoaderGuard loader(m_dataSource, id.m_mwmId,
                                           EditableFeatureSourceFactory());
    FeatureType ft;
    CHECK(loader.GetFeatureByIndex(id.m_index, ft), ());
    editor::tests_support::EditFeature(ft, std::forward<EditorFn>(fn));
  }
};
}  // namespace tests_support
}  // namespace search