summaryrefslogtreecommitdiff
path: root/keystore/tests/confirmationui_invocation_test.cpp
blob: f5182b53daf9acaf95a3927423341b33aca4d5b5 (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
/*
**
** Copyright 2019, The Android Open Source Project
**
** 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.
*/

#include <android/hardware/confirmationui/1.0/types.h>
#include <android/security/BnConfirmationPromptCallback.h>
#include <android/security/keystore/IKeystoreService.h>
#include <binder/IPCThreadState.h>
#include <binder/IServiceManager.h>

#include <gtest/gtest.h>

#include <chrono>
#include <future>
#include <tuple>
#include <vector>

using ConfirmationResponseCode = android::hardware::confirmationui::V1_0::ResponseCode;
using android::IBinder;
using android::IServiceManager;
using android::sp;
using android::String16;
using android::security::keystore::IKeystoreService;

using namespace std::literals::chrono_literals;

class ConfirmationListener
    : public android::security::BnConfirmationPromptCallback,
      public std::promise<std::tuple<ConfirmationResponseCode, std::vector<uint8_t>>> {
  public:
    ConfirmationListener() {}

    virtual ::android::binder::Status
    onConfirmationPromptCompleted(int32_t result,
                                  const ::std::vector<uint8_t>& dataThatWasConfirmed) override {
        this->set_value({static_cast<ConfirmationResponseCode>(result), dataThatWasConfirmed});
        return ::android::binder::Status::ok();
    }
};

TEST(ConfirmationInvocationTest, InvokeAndCancel) {
    android::ProcessState::self()->startThreadPool();

    sp<IServiceManager> sm = android::defaultServiceManager();
    sp<IBinder> binder = sm->getService(String16("android.security.keystore"));
    sp<IKeystoreService> service = android::interface_cast<IKeystoreService>(binder);
    ASSERT_TRUE(service);

    String16 promptText16("Just a little test!");
    String16 locale16("en");
    std::vector<uint8_t> extraData{0xaa, 0xff, 0x00, 0x55};

    sp<ConfirmationListener> listener = new ConfirmationListener();

    auto future = listener->get_future();
    int32_t aidl_return;

    android::binder::Status status = service->presentConfirmationPrompt(
        listener, promptText16, extraData, locale16, 0, &aidl_return);
    ASSERT_TRUE(status.isOk()) << "Presenting confirmation prompt failed with binder status '"
                               << status.toString8().c_str() << "'.\n";
    ConfirmationResponseCode responseCode = static_cast<ConfirmationResponseCode>(aidl_return);
    ASSERT_EQ(responseCode, ConfirmationResponseCode::OK)
        << "Presenting confirmation prompt failed with response code " << aidl_return << ".\n";

    auto fstatus = future.wait_for(2s);
    EXPECT_EQ(fstatus, std::future_status::timeout);

    status = service->cancelConfirmationPrompt(listener, &aidl_return);
    ASSERT_TRUE(status.isOk());

    responseCode = static_cast<ConfirmationResponseCode>(aidl_return);
    ASSERT_EQ(responseCode, ConfirmationResponseCode::OK);

    future.wait();
    auto [rc, dataThatWasConfirmed] = future.get();

    ASSERT_EQ(rc, ConfirmationResponseCode::Aborted);
}