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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
/*
* This file is open source software, licensed to you under the terms
* of the Apache License, Version 2.0 (the "License"). See the NOTICE file
* distributed with this work for additional information regarding copyright
* ownership. 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.
*/
/*
* Copyright (C) 2015 Cloudius Systems, Ltd.
*/
#include <seastar/testing/test_case.hh>
#include <seastar/testing/thread_test_case.hh>
#include <seastar/core/distributed.hh>
#include <seastar/core/shared_ptr.hh>
#include <seastar/core/thread.hh>
#include <seastar/core/sleep.hh>
#include <iostream>
using namespace seastar;
namespace seastar {
extern logger seastar_logger;
}
SEASTAR_TEST_CASE(make_foreign_ptr_from_lw_shared_ptr) {
auto p = make_foreign(make_lw_shared<sstring>("foo"));
BOOST_REQUIRE(p->size() == 3);
return make_ready_future<>();
}
SEASTAR_TEST_CASE(make_foreign_ptr_from_shared_ptr) {
auto p = make_foreign(make_shared<sstring>("foo"));
BOOST_REQUIRE(p->size() == 3);
return make_ready_future<>();
}
SEASTAR_TEST_CASE(foreign_ptr_copy_test) {
return seastar::async([] {
auto ptr = make_foreign(make_shared<sstring>("foo"));
BOOST_REQUIRE(ptr->size() == 3);
auto ptr2 = ptr.copy().get();
BOOST_REQUIRE(ptr2->size() == 3);
});
}
SEASTAR_TEST_CASE(foreign_ptr_get_test) {
auto p = make_foreign(std::make_unique<sstring>("foo"));
BOOST_REQUIRE_EQUAL(p.get(), &*p);
return make_ready_future<>();
};
SEASTAR_TEST_CASE(foreign_ptr_release_test) {
auto p = make_foreign(std::make_unique<sstring>("foo"));
auto raw_ptr = p.get();
BOOST_REQUIRE(bool(p));
BOOST_REQUIRE(p->size() == 3);
auto released_p = p.release();
BOOST_REQUIRE(!bool(p));
BOOST_REQUIRE(released_p->size() == 3);
BOOST_REQUIRE_EQUAL(raw_ptr, released_p.get());
return make_ready_future<>();
}
SEASTAR_TEST_CASE(foreign_ptr_reset_test) {
auto fp = make_foreign(std::make_unique<sstring>("foo"));
BOOST_REQUIRE(bool(fp));
BOOST_REQUIRE(fp->size() == 3);
fp.reset(std::make_unique<sstring>("foobar"));
BOOST_REQUIRE(bool(fp));
BOOST_REQUIRE(fp->size() == 6);
fp.reset();
BOOST_REQUIRE(!bool(fp));
return make_ready_future<>();
}
class dummy {
unsigned _cpu;
public:
dummy() : _cpu(this_shard_id()) { }
~dummy() { BOOST_REQUIRE_EQUAL(_cpu, this_shard_id()); }
};
SEASTAR_TEST_CASE(foreign_ptr_cpu_test) {
if (smp::count == 1) {
std::cerr << "Skipping multi-cpu foreign_ptr tests. Run with --smp=2 to test multi-cpu delete and reset.";
return make_ready_future<>();
}
using namespace std::chrono_literals;
return seastar::async([] {
auto p = smp::submit_to(1, [] {
return make_foreign(std::make_unique<dummy>());
}).get();
p.reset(std::make_unique<dummy>());
}).then([] {
// Let ~foreign_ptr() take its course. RIP dummy.
return seastar::sleep(100ms);
});
}
SEASTAR_TEST_CASE(foreign_ptr_move_assignment_test) {
if (smp::count == 1) {
std::cerr << "Skipping multi-cpu foreign_ptr tests. Run with --smp=2 to test multi-cpu delete and reset.";
return make_ready_future<>();
}
using namespace std::chrono_literals;
return seastar::async([] {
auto p = smp::submit_to(1, [] {
return make_foreign(std::make_unique<dummy>());
}).get();
p = foreign_ptr<std::unique_ptr<dummy>>();
}).then([] {
// Let ~foreign_ptr() take its course. RIP dummy.
return seastar::sleep(100ms);
});
}
SEASTAR_THREAD_TEST_CASE(foreign_ptr_destroy_test) {
if (smp::count == 1) {
std::cerr << "Skipping multi-cpu foreign_ptr tests. Run with --smp=2 to test multi-cpu delete and reset.";
return;
}
using namespace std::chrono_literals;
std::vector<promise<bool>> done;
done.resize(smp::count);
struct deferred {
std::vector<promise<bool>>& done;
deferred(std::vector<promise<bool>>& done_)
: done(done_)
{}
~deferred() {
seastar_logger.info("~deferred");
internal::run_in_background([&done = done, shard = this_shard_id()] {
return smp::submit_to(0, [&done, shard] {
done[shard].set_value(true);
done[shard ^ 1].set_value(false);
});
});
}
};
auto val = smp::submit_to(1, [&] () mutable {
return make_foreign(std::make_unique<deferred>(done));
}).get();
val.destroy().get();
BOOST_REQUIRE_EQUAL(done[1].get_future().get(), true);
BOOST_REQUIRE_EQUAL(done[0].get_future().get(), false);
}
|