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
|
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/arc/nearby_share/nearby_share_session_impl.h"
#include <memory>
#include "ash/public/cpp/shelf_model.h"
#include "base/command_line.h"
#include "base/containers/flat_map.h"
#include "base/functional/bind.h"
#include "base/memory/ptr_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/test/bind.h"
#include "base/test/scoped_feature_list.h"
#include "chrome/browser/ash/app_list/arc/arc_app_test.h"
#include "chrome/browser/ash/arc/fileapi/arc_file_system_mounter.h"
#include "chrome/browser/nearby_sharing/nearby_sharing_service_factory.h"
#include "chrome/browser/ui/ash/shelf/chrome_shelf_controller.h"
#include "chrome/test/base/testing_profile.h"
#include "chromeos/ash/experiences/arc/arc_features.h"
#include "chromeos/ash/experiences/arc/mojom/nearby_share.mojom.h"
#include "chromeos/ash/experiences/arc/session/arc_service_manager.h"
#include "chromeos/ash/experiences/arc/test/arc_util_test_support.h"
#include "chromeos/ui/base/app_types.h"
#include "chromeos/ui/base/window_properties.h"
#include "components/exo/shell_surface_util.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/aura/client/aura_constants.h"
#include "ui/aura/test/test_windows.h"
namespace arc {
namespace {
constexpr uint32_t kTaskId = 100;
}
class NearbyShareSessionImplTest : public testing::Test {
public:
// Create a NearbyShareSessionImpl for sharing |share_info|. The share will
// not commence until an ARC window is visible.
NearbyShareSessionImpl* MakeSession(mojom::ShareIntentInfoPtr share_info) {
shelf_model_ = std::make_unique<ash::ShelfModel>();
shelf_controller_ =
std::make_unique<ChromeShelfController>(&profile_, shelf_model_.get());
shelf_controller_->Init();
session_ = std::make_unique<NearbyShareSessionImpl>(
&profile_, kTaskId, std::move(share_info),
mojo::PendingRemote<mojom::NearbyShareSessionInstance>(),
host_remote_.InitWithNewPipeAndPassReceiver(),
/*session_finished_callback=*/base::BindOnce([](uint32_t) {}));
return session_.get();
}
void ShowArcWindow() {
window_ =
base::WrapUnique(aura::test::CreateTestWindowWithId(kTaskId, nullptr));
exo::SetShellApplicationId(
window_.get(), "org.chromium.arc." + base::NumberToString(kTaskId));
window_->SetProperty(chromeos::kAppTypeKey, chromeos::AppType::ARC_APP);
session_->OnWindowVisibilityChanged(window_.get(), /*visible=*/true);
}
Profile* profile() { return &profile_; }
private:
content::BrowserTaskEnvironment task_environment_;
TestingProfile profile_;
std::unique_ptr<ash::ShelfModel> shelf_model_;
std::unique_ptr<ChromeShelfController> shelf_controller_;
mojo::PendingRemote<mojom::NearbyShareSessionHost> host_remote_;
std::unique_ptr<NearbyShareSessionImpl> session_;
std::unique_ptr<aura::Window> window_;
};
TEST_F(NearbyShareSessionImplTest, TextShareIntent) {
mojom::ShareIntentInfoPtr share_info = mojom::ShareIntentInfo::New();
share_info->title = "Test share title";
base::flat_map<std::string, std::string> extras = {
{"android.intent.extra.TEXT", "Test share content"}};
share_info->extras = std::move(extras);
auto* session = MakeSession(std::move(share_info));
base::RunLoop run_loop;
apps::IntentPtr shared_intent;
session->SetSharesheetCallbackForTesting(base::BindLambdaForTesting(
[&](gfx::NativeWindow native_window, apps::IntentPtr intent,
sharesheet::LaunchSource source,
sharesheet::DeliveredCallback delivered_callback,
sharesheet::CloseCallback close_callback,
sharesheet::ActionCleanupCallback cleanup_callback) {
run_loop.Quit();
shared_intent = std::move(intent);
}));
ShowArcWindow();
run_loop.Run();
ASSERT_EQ(shared_intent->share_title, "Test share title");
ASSERT_EQ(shared_intent->share_text, "Test share content");
}
} // namespace arc
|