blob: 153cf9683c012ede8fcbf1400b28857db83e4568 [file] [log] [blame]
John Reckd69089a2015-10-28 15:36:33 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <gtest/gtest.h>
18
19#include <utils/StrongPointer.h>
20#include <utils/RefBase.h>
21
22using namespace android;
23
Colin Crossfe06c632017-02-23 17:48:08 -080024class SPFoo : public LightRefBase<SPFoo> {
John Reckd69089a2015-10-28 15:36:33 -070025public:
Colin Crossfe06c632017-02-23 17:48:08 -080026 explicit SPFoo(bool* deleted_check) : mDeleted(deleted_check) {
John Reckd69089a2015-10-28 15:36:33 -070027 *mDeleted = false;
28 }
29
Colin Crossfe06c632017-02-23 17:48:08 -080030 ~SPFoo() {
John Reckd69089a2015-10-28 15:36:33 -070031 *mDeleted = true;
32 }
33private:
34 bool* mDeleted;
35};
36
37TEST(StrongPointer, move) {
38 bool isDeleted;
Colin Crossfe06c632017-02-23 17:48:08 -080039 SPFoo* foo = new SPFoo(&isDeleted);
John Reckd69089a2015-10-28 15:36:33 -070040 ASSERT_EQ(0, foo->getStrongCount());
41 ASSERT_FALSE(isDeleted) << "Already deleted...?";
Colin Crossfe06c632017-02-23 17:48:08 -080042 sp<SPFoo> sp1(foo);
John Reckd69089a2015-10-28 15:36:33 -070043 ASSERT_EQ(1, foo->getStrongCount());
44 {
Colin Crossfe06c632017-02-23 17:48:08 -080045 sp<SPFoo> sp2 = std::move(sp1);
John Reckd69089a2015-10-28 15:36:33 -070046 ASSERT_EQ(1, foo->getStrongCount()) << "std::move failed, incremented refcnt";
47 ASSERT_EQ(nullptr, sp1.get()) << "std::move failed, sp1 is still valid";
48 // The strong count isn't increasing, let's double check the old object
49 // is properly reset and doesn't early delete
50 sp1 = std::move(sp2);
51 }
52 ASSERT_FALSE(isDeleted) << "deleted too early! still has a reference!";
53 {
54 // Now let's double check it deletes on time
Colin Crossfe06c632017-02-23 17:48:08 -080055 sp<SPFoo> sp2 = std::move(sp1);
John Reckd69089a2015-10-28 15:36:33 -070056 }
57 ASSERT_TRUE(isDeleted) << "foo was leaked!";
58}