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

runner.cpp « section_handle_create_close « tests « test - github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7408aba8dcc5be1b13ab3bcf32539d64c89dee4 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/* Integration test kernel for section_handle create and close
(C) 2016-2017 Niall Douglas <http://www.nedproductions.biz/> (7 commits)
File Created: Aug 2016


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 in the accompanying file
Licence.txt or 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.


Distributed under the Boost Software License, Version 1.0.
    (See accompanying file Licence.txt or copy at
          http://www.boost.org/LICENSE_1_0.txt)
*/

#include "kerneltest/include/kerneltest.hpp"
#include "kernel_section_handle.cpp.hpp"

template <class U> inline void section_handle_create_close_(U &&f)
{
  using namespace KERNELTEST_V1_NAMESPACE;
  using AFIO_V2_NAMESPACE::file_handle;
  using AFIO_V2_NAMESPACE::section_handle;

  // Create a temporary file and put some text into it
  file_handle temph;
  auto boundf = [&](auto... pars) { return f(temph, pars...); };

  // clang-format off
  static const auto permuter(st_permute_parameters<
    result<void>,                               
    parameters<                              
      typename section_handle::extent_type,
      typename section_handle::flag
    >,
    precondition::filesystem_setup_parameters,
    postcondition::custom_parameters<bool>
  >(
    {
      { success(),{ 1, section_handle::flag::none },{ "_" },{ false } },
      { success(),{ 1, section_handle::flag::read },{ "_" },{ false } },
      { success(),{ 1, section_handle::flag::write },{ "_" },{ false } },
      { success(),{ 1, section_handle::flag::cow },{ "_" },{ false } },
      { success(),{ 1, section_handle::flag::execute },{ "_" },{ false } },
      { success(),{ 1, section_handle::flag::write|section_handle::flag::nocommit },{ "_" },{ false } },
      { success(),{ 1, section_handle::flag::write|section_handle::flag::prefault },{ "_" },{ false } },
      //{ success(),{ 1, section_handle::flag::write|section_handle::flag::executable },{ "_" },{ false } },

      { success(),{ 1, section_handle::flag::none },{ "_" },{ true } },
      { success(),{ 1, section_handle::flag::read },{ "_" },{ true } },
      { success(),{ 1, section_handle::flag::write },{ "_" },{ true } },
      { success(),{ 1, section_handle::flag::cow },{ "_" },{ true } },
      //{ success(),{ 1, section_handle::flag::execute },{ "_" },{ true } },
      { success(),{ 1, section_handle::flag::write | section_handle::flag::nocommit },{ "_" },{ true } },
      { success(),{ 1, section_handle::flag::write | section_handle::flag::prefault },{ "_" },{ true } },
      //{ success(),{ 1, section_handle::flag::write|section_handle::flag::executable },{ "_" },{ true } },
  },
    precondition::filesystem_setup(),
    postcondition::custom(
      [&](auto &, auto &testreturn, size_t, int use_file_backing) {
        if (use_file_backing)
        {
          temph = file_handle::file({}, "tempfile", file_handle::mode::write, file_handle::creation::if_needed).value();
          temph.write(0, "niall is not here", 17).value();
        }
        else
        {
          temph = file_handle();
        }
        return &testreturn;
      },
      [&](auto *testreturn) {
        // Need to close the section and any backing file as otherwise filesystem_setup won't be able to clear up the working dir
        if (**testreturn)
        {
          (void)(*testreturn)->value().close();
        }
        (void) temph.close();
      },
    "check section")
  ));
  // clang-format on

  auto results = permuter(boundf);
  check_results_with_boost_test(permuter, results);
}

KERNELTEST_TEST_KERNEL(unit, afio, section_handle_create_close, section_handle, "Tests that afio::section_handle's creation parameters work as expected", section_handle_create_close_(section_handle_create_close::test_kernel_section_handle))