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 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/chromeos/file_manager/file_tasks.h"
#include <algorithm>
#include <utility>
#include "base/command_line.h"
#include "base/prefs/pref_registry_simple.h"
#include "base/prefs/testing_pref_service.h"
#include "base/values.h"
#include "chrome/browser/chromeos/drive/file_system_util.h"
#include "chrome/browser/chromeos/file_manager/app_id.h"
#include "chrome/browser/chromeos/login/users/scoped_test_user_manager.h"
#include "chrome/browser/chromeos/settings/cros_settings.h"
#include "chrome/browser/chromeos/settings/device_settings_service.h"
#include "chrome/browser/drive/drive_app_registry.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/test_extension_system.h"
#include "chrome/common/pref_names.h"
#include "chrome/test/base/testing_profile.h"
#include "content/public/test/test_browser_thread_bundle.h"
#include "extensions/browser/extension_prefs.h"
#include "extensions/browser/extension_system.h"
#include "extensions/common/extension_builder.h"
#include "google_apis/drive/drive_api_parser.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace file_manager {
namespace file_tasks {
namespace {
// Registers the default task preferences. Used for testing
// ChooseAndSetDefaultTask().
void RegisterDefaultTaskPreferences(TestingPrefServiceSimple* pref_service) {
DCHECK(pref_service);
pref_service->registry()->RegisterDictionaryPref(
prefs::kDefaultTasksByMimeType);
pref_service->registry()->RegisterDictionaryPref(
prefs::kDefaultTasksBySuffix);
}
// Updates the default task preferences per the given dictionary values. Used
// for testing ChooseAndSetDefaultTask.
void UpdateDefaultTaskPreferences(TestingPrefServiceSimple* pref_service,
const base::DictionaryValue& mime_types,
const base::DictionaryValue& suffixes) {
DCHECK(pref_service);
pref_service->Set(prefs::kDefaultTasksByMimeType, mime_types);
pref_service->Set(prefs::kDefaultTasksBySuffix, suffixes);
}
} // namespace
TEST(FileManagerFileTasksTest,
FullTaskDescriptor_NonDriveAppWithIconAndDefault) {
FullTaskDescriptor full_descriptor(
TaskDescriptor("app-id",
TASK_TYPE_FILE_BROWSER_HANDLER,
"action-id"),
"task title",
GURL("http://example.com/icon.png"),
true /* is_default */,
false /* is_generic_file_handler */);
const std::string task_id =
TaskDescriptorToId(full_descriptor.task_descriptor());
EXPECT_EQ("app-id|file|action-id", task_id);
EXPECT_EQ("http://example.com/icon.png", full_descriptor.icon_url().spec());
EXPECT_EQ("task title", full_descriptor.task_title());
EXPECT_TRUE(full_descriptor.is_default());
}
TEST(FileManagerFileTasksTest,
FullTaskDescriptor_DriveAppWithoutIconAndNotDefault) {
FullTaskDescriptor full_descriptor(
TaskDescriptor("app-id",
TASK_TYPE_DRIVE_APP,
"action-id"),
"task title",
GURL(), // No icon URL.
false /* is_default */,
false /* is_generic_file_handler */);
const std::string task_id =
TaskDescriptorToId(full_descriptor.task_descriptor());
EXPECT_EQ("app-id|drive|action-id", task_id);
EXPECT_TRUE(full_descriptor.icon_url().is_empty());
EXPECT_EQ("task title", full_descriptor.task_title());
EXPECT_FALSE(full_descriptor.is_default());
}
TEST(FileManagerFileTasksTest, MakeTaskID) {
EXPECT_EQ("app-id|file|action-id",
MakeTaskID("app-id", TASK_TYPE_FILE_BROWSER_HANDLER, "action-id"));
EXPECT_EQ("app-id|app|action-id",
MakeTaskID("app-id", TASK_TYPE_FILE_HANDLER, "action-id"));
EXPECT_EQ("app-id|drive|action-id",
MakeTaskID("app-id", TASK_TYPE_DRIVE_APP, "action-id"));
}
TEST(FileManagerFileTasksTest, TaskDescriptorToId) {
EXPECT_EQ("app-id|file|action-id",
TaskDescriptorToId(TaskDescriptor("app-id",
TASK_TYPE_FILE_BROWSER_HANDLER,
"action-id")));
}
TEST(FileManagerFileTasksTest, ParseTaskID_FileBrowserHandler) {
TaskDescriptor task;
EXPECT_TRUE(ParseTaskID("app-id|file|action-id", &task));
EXPECT_EQ("app-id", task.app_id);
EXPECT_EQ(TASK_TYPE_FILE_BROWSER_HANDLER, task.task_type);
EXPECT_EQ("action-id", task.action_id);
}
TEST(FileManagerFileTasksTest, ParseTaskID_FileHandler) {
TaskDescriptor task;
EXPECT_TRUE(ParseTaskID("app-id|app|action-id", &task));
EXPECT_EQ("app-id", task.app_id);
EXPECT_EQ(TASK_TYPE_FILE_HANDLER, task.task_type);
EXPECT_EQ("action-id", task.action_id);
}
TEST(FileManagerFileTasksTest, ParseTaskID_DriveApp) {
TaskDescriptor task;
EXPECT_TRUE(ParseTaskID("app-id|drive|action-id", &task));
EXPECT_EQ("app-id", task.app_id);
EXPECT_EQ(TASK_TYPE_DRIVE_APP, task.task_type);
EXPECT_EQ("action-id", task.action_id);
}
TEST(FileManagerFileTasksTest, ParseTaskID_Legacy) {
TaskDescriptor task;
// A legacy task ID only has two parts. The task type should be
// TASK_TYPE_FILE_BROWSER_HANDLER.
EXPECT_TRUE(ParseTaskID("app-id|action-id", &task));
EXPECT_EQ("app-id", task.app_id);
EXPECT_EQ(TASK_TYPE_FILE_BROWSER_HANDLER, task.task_type);
EXPECT_EQ("action-id", task.action_id);
}
TEST(FileManagerFileTasksTest, ParseTaskID_LegacyDrive) {
TaskDescriptor task;
// A legacy task ID only has two parts. For Drive app, the app ID is
// prefixed with "drive-app:".
EXPECT_TRUE(ParseTaskID("drive-app:app-id|action-id", &task));
EXPECT_EQ("app-id", task.app_id);
EXPECT_EQ(TASK_TYPE_DRIVE_APP, task.task_type);
EXPECT_EQ("action-id", task.action_id);
}
TEST(FileManagerFileTasksTest, ParseTaskID_Invalid) {
TaskDescriptor task;
EXPECT_FALSE(ParseTaskID("invalid", &task));
}
TEST(FileManagerFileTasksTest, ParseTaskID_UnknownTaskType) {
TaskDescriptor task;
EXPECT_FALSE(ParseTaskID("app-id|unknown|action-id", &task));
}
TEST(FileManagerFileTasksTest, FindDriveAppTasks) {
TestingProfile profile;
// For DriveAppRegistry, which checks CurrentlyOn(BrowserThread::UI).
content::TestBrowserThreadBundle thread_bundle;
// Foo.app can handle "text/plain" and "text/html"
scoped_ptr<google_apis::AppResource> foo_app(new google_apis::AppResource);
foo_app->set_product_id("foo_app_id");
foo_app->set_application_id("foo_app_id");
foo_app->set_name("Foo");
foo_app->set_object_type("foo_object_type");
ScopedVector<std::string> foo_mime_types;
foo_mime_types.push_back(new std::string("text/plain"));
foo_mime_types.push_back(new std::string("text/html"));
foo_app->set_primary_mimetypes(foo_mime_types.Pass());
// Bar.app can only handle "text/plain".
scoped_ptr<google_apis::AppResource> bar_app(new google_apis::AppResource);
bar_app->set_product_id("bar_app_id");
bar_app->set_application_id("bar_app_id");
bar_app->set_name("Bar");
bar_app->set_object_type("bar_object_type");
ScopedVector<std::string> bar_mime_types;
bar_mime_types.push_back(new std::string("text/plain"));
bar_app->set_primary_mimetypes(bar_mime_types.Pass());
// Prepare DriveAppRegistry from Foo.app and Bar.app.
ScopedVector<google_apis::AppResource> app_resources;
app_resources.push_back(foo_app.release());
app_resources.push_back(bar_app.release());
google_apis::AppList app_list;
app_list.set_items(app_resources.Pass());
drive::DriveAppRegistry drive_app_registry(NULL);
drive_app_registry.UpdateFromAppList(app_list);
// Find apps for a "text/plain" file. Foo.app and Bar.app should be found.
PathAndMimeTypeSet path_mime_set;
path_mime_set.insert(
std::make_pair(
drive::util::GetDriveMountPointPath(&profile).AppendASCII("foo.txt"),
"text/plain"));
std::vector<FullTaskDescriptor> tasks;
FindDriveAppTasks(drive_app_registry,
path_mime_set,
&tasks);
ASSERT_EQ(2U, tasks.size());
// Sort the app IDs, as the order is not guaranteed.
std::vector<std::string> app_ids;
app_ids.push_back(tasks[0].task_descriptor().app_id);
app_ids.push_back(tasks[1].task_descriptor().app_id);
std::sort(app_ids.begin(), app_ids.end());
// Confirm that both Foo.app and Bar.app are found.
EXPECT_EQ("bar_app_id", app_ids[0]);
EXPECT_EQ("foo_app_id", app_ids[1]);
// Find apps for "text/plain" and "text/html" files. Only Foo.app should be
// found.
path_mime_set.clear();
path_mime_set.insert(
std::make_pair(
drive::util::GetDriveMountPointPath(&profile).AppendASCII("foo.txt"),
"text/plain"));
path_mime_set.insert(
std::make_pair(
drive::util::GetDriveMountPointPath(&profile).AppendASCII("foo.html"),
"text/html"));
tasks.clear();
FindDriveAppTasks(drive_app_registry,
path_mime_set,
&tasks);
ASSERT_EQ(1U, tasks.size());
// Confirm that only Foo.app is found.
EXPECT_EQ("foo_app_id", tasks[0].task_descriptor().app_id);
// Add a "text/plain" file not on Drive. No tasks should be found.
path_mime_set.insert(
std::make_pair(base::FilePath::FromUTF8Unsafe("not_on_drive.txt"),
"text/plain"));
tasks.clear();
FindDriveAppTasks(drive_app_registry,
path_mime_set,
&tasks);
// Confirm no tasks are found.
ASSERT_TRUE(tasks.empty());
}
// Test that the right task is chosen from multiple choices per mime types
// and file extensions.
TEST(FileManagerFileTasksTest, ChooseAndSetDefaultTask_MultipleTasks) {
TestingPrefServiceSimple pref_service;
RegisterDefaultTaskPreferences(&pref_service);
// Text.app and Nice.app were found for "foo.txt".
TaskDescriptor text_app_task("text-app-id",
TASK_TYPE_FILE_HANDLER,
"action-id");
TaskDescriptor nice_app_task("nice-app-id",
TASK_TYPE_FILE_HANDLER,
"action-id");
std::vector<FullTaskDescriptor> tasks;
tasks.push_back(FullTaskDescriptor(
text_app_task,
"Text.app",
GURL("http://example.com/text_app.png"),
false /* is_default */,
false /* is_generic_file_handler */));
tasks.push_back(FullTaskDescriptor(
nice_app_task,
"Nice.app",
GURL("http://example.com/nice_app.png"),
false /* is_default */,
false /* is_generic_file_handler */));
PathAndMimeTypeSet path_mime_set;
path_mime_set.insert(std::make_pair(
base::FilePath::FromUTF8Unsafe("foo.txt"),
"text/plain"));
// None of them should be chosen as default, as nothing is set in the
// preferences.
ChooseAndSetDefaultTask(pref_service, path_mime_set, &tasks);
EXPECT_FALSE(tasks[0].is_default());
EXPECT_FALSE(tasks[1].is_default());
// Set Text.app as default for "text/plain" in the preferences.
base::DictionaryValue empty;
base::DictionaryValue mime_types;
mime_types.SetStringWithoutPathExpansion(
"text/plain",
TaskDescriptorToId(text_app_task));
UpdateDefaultTaskPreferences(&pref_service, mime_types, empty);
// Text.app should be chosen as default.
ChooseAndSetDefaultTask(pref_service, path_mime_set, &tasks);
EXPECT_TRUE(tasks[0].is_default());
EXPECT_FALSE(tasks[1].is_default());
// Change it back to non-default for testing further.
tasks[0].set_is_default(false);
// Clear the preferences and make sure none of them are default.
UpdateDefaultTaskPreferences(&pref_service, empty, empty);
ChooseAndSetDefaultTask(pref_service, path_mime_set, &tasks);
EXPECT_FALSE(tasks[0].is_default());
EXPECT_FALSE(tasks[1].is_default());
// Set Nice.app as default for ".txt" in the preferences.
base::DictionaryValue suffixes;
suffixes.SetStringWithoutPathExpansion(
".txt",
TaskDescriptorToId(nice_app_task));
UpdateDefaultTaskPreferences(&pref_service, empty, suffixes);
// Now Nice.app should be chosen as default.
ChooseAndSetDefaultTask(pref_service, path_mime_set, &tasks);
EXPECT_FALSE(tasks[0].is_default());
EXPECT_TRUE(tasks[1].is_default());
}
// Test that Files.app's internal file browser handler is chosen as default
// even if nothing is set in the preferences.
TEST(FileManagerFileTasksTest, ChooseAndSetDefaultTask_FallbackFileBrowser) {
TestingPrefServiceSimple pref_service;
RegisterDefaultTaskPreferences(&pref_service);
// Files.app's internal file browser handler was found for "foo.txt".
TaskDescriptor files_app_task(kFileManagerAppId,
TASK_TYPE_FILE_BROWSER_HANDLER,
"view-in-browser");
std::vector<FullTaskDescriptor> tasks;
tasks.push_back(FullTaskDescriptor(
files_app_task,
"View in browser",
GURL("http://example.com/some_icon.png"),
false /* is_default */,
false /* is_generic_file_handler */));
PathAndMimeTypeSet path_mime_set;
path_mime_set.insert(std::make_pair(
base::FilePath::FromUTF8Unsafe("foo.txt"),
"text/plain"));
// The internal file browser handler should be chosen as default, as it's a
// fallback file browser handler.
ChooseAndSetDefaultTask(pref_service, path_mime_set, &tasks);
EXPECT_TRUE(tasks[0].is_default());
}
// Test IsGenericFileHandler which returns whether a file handle info is a
// generic file handler or not.
TEST(FileManagerFileTasksTest, IsGenericFileHandler) {
using FileHandlerInfo = extensions::FileHandlerInfo;
// extensions: ["*"]
FileHandlerInfo file_handler_info_1;
file_handler_info_1.extensions.insert("*");
EXPECT_TRUE(IsGenericFileHandler(file_handler_info_1));
// extensions: ["*", "jpg"]
FileHandlerInfo file_handler_info_2;
file_handler_info_2.extensions.insert("*");
file_handler_info_2.extensions.insert("jpg");
EXPECT_TRUE(IsGenericFileHandler(file_handler_info_2));
// extensions: ["jpg"]
FileHandlerInfo file_handler_info_3;
file_handler_info_3.extensions.insert("jpg");
EXPECT_FALSE(IsGenericFileHandler(file_handler_info_3));
// types: ["*"]
FileHandlerInfo file_handler_info_4;
file_handler_info_4.types.insert("*");
EXPECT_TRUE(IsGenericFileHandler(file_handler_info_4));
// types: ["*/*"]
FileHandlerInfo file_handler_info_5;
file_handler_info_5.types.insert("*/*");
EXPECT_TRUE(IsGenericFileHandler(file_handler_info_5));
// types: ["image/*"]
FileHandlerInfo file_handler_info_6;
file_handler_info_6.types.insert("image/*");
// Partial wild card is not generic.
EXPECT_FALSE(IsGenericFileHandler(file_handler_info_6));
// types: ["*", "image/*"]
FileHandlerInfo file_handler_info_7;
file_handler_info_7.types.insert("*");
file_handler_info_7.types.insert("image/*");
EXPECT_TRUE(IsGenericFileHandler(file_handler_info_7));
// extensions: ["*"], types: ["image/*"]
FileHandlerInfo file_handler_info_8;
file_handler_info_8.extensions.insert("*");
file_handler_info_8.types.insert("image/*");
EXPECT_TRUE(IsGenericFileHandler(file_handler_info_8));
}
// Test using the test extension system, which needs lots of setup.
class FileManagerFileTasksComplexTest : public testing::Test {
protected:
FileManagerFileTasksComplexTest()
: command_line_(base::CommandLine::NO_PROGRAM), extension_service_(NULL) {
extensions::TestExtensionSystem* test_extension_system =
static_cast<extensions::TestExtensionSystem*>(
extensions::ExtensionSystem::Get(&test_profile_));
extension_service_ = test_extension_system->CreateExtensionService(
&command_line_,
base::FilePath() /* install_directory */,
false /* autoupdate_enabled*/);
}
content::TestBrowserThreadBundle thread_bundle_;
chromeos::ScopedTestDeviceSettingsService test_device_settings_service_;
chromeos::ScopedTestCrosSettings test_cros_settings_;
chromeos::ScopedTestUserManager test_user_manager_;
TestingProfile test_profile_;
base::CommandLine command_line_;
ExtensionService* extension_service_; // Owned by test_profile_;
};
// The basic logic is similar to a test case for FindDriveAppTasks above.
TEST_F(FileManagerFileTasksComplexTest, FindFileHandlerTasks) {
// Random IDs generated by
// % ruby -le 'print (0...32).to_a.map{(?a + rand(16)).chr}.join'
const char kFooId[] = "hhgbjpmdppecanaaogonaigmmifgpaph";
const char kBarId[] = "odlhccgofgkadkkhcmhgnhgahonahoca";
const char kEphemeralId[] = "opoomfdlbjcbjinalcjdjfoiikdeaoel";
// Foo.app can handle "text/plain" and "text/html".
extensions::ExtensionBuilder foo_app;
foo_app.SetManifest(extensions::DictionaryBuilder()
.Set("name", "Foo")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("app",
extensions::DictionaryBuilder()
.Set("background",
extensions::DictionaryBuilder()
.Set("scripts",
extensions::ListBuilder()
.Append("background.js"))))
.Set("file_handlers",
extensions::DictionaryBuilder()
.Set("text",
extensions::DictionaryBuilder()
.Set("title", "Text")
.Set("types",
extensions::ListBuilder()
.Append("text/plain")
.Append("text/html")))));
foo_app.SetID(kFooId);
extension_service_->AddExtension(foo_app.Build().get());
// Bar.app can only handle "text/plain".
extensions::ExtensionBuilder bar_app;
bar_app.SetManifest(extensions::DictionaryBuilder()
.Set("name", "Bar")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("app",
extensions::DictionaryBuilder()
.Set("background",
extensions::DictionaryBuilder()
.Set("scripts",
extensions::ListBuilder()
.Append("background.js"))))
.Set("file_handlers",
extensions::DictionaryBuilder()
.Set("text",
extensions::DictionaryBuilder()
.Set("title", "Text")
.Set("types",
extensions::ListBuilder()
.Append("text/plain")))));
bar_app.SetID(kBarId);
extension_service_->AddExtension(bar_app.Build().get());
// Ephemeral.app is an ephemeral app that can handle "text/plain".
// It should not ever be found as ephemeral apps cannot be file handlers.
extensions::ExtensionBuilder ephemeral_app;
ephemeral_app.SetManifest(
extensions::DictionaryBuilder()
.Set("name", "Ephemeral")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("app",
extensions::DictionaryBuilder().Set(
"background",
extensions::DictionaryBuilder().Set(
"scripts",
extensions::ListBuilder().Append("background.js"))))
.Set("file_handlers",
extensions::DictionaryBuilder().Set(
"text",
extensions::DictionaryBuilder().Set("title", "Text").Set(
"types",
extensions::ListBuilder().Append("text/plain")))));
ephemeral_app.SetID(kEphemeralId);
scoped_refptr<extensions::Extension> built_ephemeral_app(
ephemeral_app.Build());
extension_service_->AddExtension(built_ephemeral_app.get());
extensions::ExtensionPrefs* extension_prefs =
extensions::ExtensionPrefs::Get(&test_profile_);
extension_prefs->OnExtensionInstalled(built_ephemeral_app.get(),
extensions::Extension::ENABLED,
syncer::StringOrdinal(),
extensions::kInstallFlagIsEphemeral,
std::string());
// Find apps for a "text/plain" file. Foo.app and Bar.app should be found.
PathAndMimeTypeSet path_mime_set;
path_mime_set.insert(
std::make_pair(
drive::util::GetDriveMountPointPath(&test_profile_).AppendASCII(
"foo.txt"),
"text/plain"));
std::vector<FullTaskDescriptor> tasks;
FindFileHandlerTasks(&test_profile_, path_mime_set, &tasks);
ASSERT_EQ(2U, tasks.size());
// Sort the app IDs, as the order is not guaranteed.
std::vector<std::string> app_ids;
app_ids.push_back(tasks[0].task_descriptor().app_id);
app_ids.push_back(tasks[1].task_descriptor().app_id);
std::sort(app_ids.begin(), app_ids.end());
// Confirm that both Foo.app and Bar.app are found.
EXPECT_EQ(kFooId, app_ids[0]);
EXPECT_EQ(kBarId, app_ids[1]);
// Find apps for "text/plain" and "text/html" files. Only Foo.app should be
// found.
path_mime_set.clear();
path_mime_set.insert(
std::make_pair(
drive::util::GetDriveMountPointPath(&test_profile_).AppendASCII(
"foo.txt"),
"text/plain"));
path_mime_set.insert(
std::make_pair(
drive::util::GetDriveMountPointPath(&test_profile_).AppendASCII(
"foo.html"),
"text/html"));
tasks.clear();
FindFileHandlerTasks(&test_profile_, path_mime_set, &tasks);
ASSERT_EQ(1U, tasks.size());
// Confirm that only Foo.app is found.
EXPECT_EQ(kFooId, tasks[0].task_descriptor().app_id);
// Add an "image/png" file. No tasks should be found.
path_mime_set.insert(
std::make_pair(base::FilePath::FromUTF8Unsafe("foo.png"),
"image/png"));
tasks.clear();
FindFileHandlerTasks(&test_profile_, path_mime_set, &tasks);
// Confirm no tasks are found.
ASSERT_TRUE(tasks.empty());
}
// The basic logic is similar to a test case for FindDriveAppTasks above.
TEST_F(FileManagerFileTasksComplexTest, FindFileBrowserHandlerTasks) {
// Copied from FindFileHandlerTasks test above.
const char kFooId[] = "hhgbjpmdppecanaaogonaigmmifgpaph";
const char kBarId[] = "odlhccgofgkadkkhcmhgnhgahonahoca";
const char kEphemeralId[] = "opoomfdlbjcbjinalcjdjfoiikdeaoel";
// Foo.app can handle ".txt" and ".html".
// This one is an extension, and has "file_browser_handlers"
extensions::ExtensionBuilder foo_app;
foo_app.SetManifest(extensions::DictionaryBuilder()
.Set("name", "Foo")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("file_browser_handlers",
extensions::ListBuilder()
.Append(extensions::DictionaryBuilder()
.Set("id", "open")
.Set("default_title", "open")
.Set("file_filters",
extensions::ListBuilder()
.Append("filesystem:*.txt")
.Append("filesystem:*.html")))));
foo_app.SetID(kFooId);
extension_service_->AddExtension(foo_app.Build().get());
// Bar.app can only handle ".txt".
extensions::ExtensionBuilder bar_app;
bar_app.SetManifest(extensions::DictionaryBuilder()
.Set("name", "Bar")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("file_browser_handlers",
extensions::ListBuilder()
.Append(extensions::DictionaryBuilder()
.Set("id", "open")
.Set("default_title", "open")
.Set("file_filters",
extensions::ListBuilder()
.Append("filesystem:*.txt")))));
bar_app.SetID(kBarId);
extension_service_->AddExtension(bar_app.Build().get());
// Ephemeral.app is an ephemeral app that can handle ".txt".
// It should not ever be found as ephemeral apps cannot be file browser
// handlers.
extensions::ExtensionBuilder ephemeral_app;
ephemeral_app.SetManifest(
extensions::DictionaryBuilder()
.Set("name", "Ephemeral")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("file_browser_handlers",
extensions::ListBuilder().Append(
extensions::DictionaryBuilder()
.Set("id", "open")
.Set("default_title", "open")
.Set("file_filters",
extensions::ListBuilder().Append(
"filesystem:*.txt")))));
ephemeral_app.SetID(kEphemeralId);
scoped_refptr<extensions::Extension> built_ephemeral_app(
ephemeral_app.Build());
extension_service_->AddExtension(built_ephemeral_app.get());
extensions::ExtensionPrefs* extension_prefs =
extensions::ExtensionPrefs::Get(&test_profile_);
extension_prefs->OnExtensionInstalled(built_ephemeral_app.get(),
extensions::Extension::ENABLED,
syncer::StringOrdinal(),
extensions::kInstallFlagIsEphemeral,
std::string());
// Find apps for a ".txt" file. Foo.app and Bar.app should be found.
std::vector<GURL> file_urls;
file_urls.push_back(GURL("filesystem:chrome-extension://id/dir/foo.txt"));
std::vector<FullTaskDescriptor> tasks;
FindFileBrowserHandlerTasks(&test_profile_, file_urls, &tasks);
ASSERT_EQ(2U, tasks.size());
// Sort the app IDs, as the order is not guaranteed.
std::vector<std::string> app_ids;
app_ids.push_back(tasks[0].task_descriptor().app_id);
app_ids.push_back(tasks[1].task_descriptor().app_id);
std::sort(app_ids.begin(), app_ids.end());
// Confirm that both Foo.app and Bar.app are found.
EXPECT_EQ(kFooId, app_ids[0]);
EXPECT_EQ(kBarId, app_ids[1]);
// Find apps for ".txt" and ".html" files. Only Foo.app should be found.
file_urls.clear();
file_urls.push_back(GURL("filesystem:chrome-extension://id/dir/foo.txt"));
file_urls.push_back(GURL("filesystem:chrome-extension://id/dir/foo.html"));
tasks.clear();
FindFileBrowserHandlerTasks(&test_profile_, file_urls, &tasks);
ASSERT_EQ(1U, tasks.size());
// Confirm that only Foo.app is found.
EXPECT_EQ(kFooId, tasks[0].task_descriptor().app_id);
// Add an ".png" file. No tasks should be found.
file_urls.push_back(GURL("filesystem:chrome-extension://id/dir/foo.png"));
tasks.clear();
FindFileBrowserHandlerTasks(&test_profile_, file_urls, &tasks);
// Confirm no tasks are found.
ASSERT_TRUE(tasks.empty());
}
// Test that all kinds of apps (file handler, file browser handler, and Drive
// app) are returned.
TEST_F(FileManagerFileTasksComplexTest, FindAllTypesOfTasks) {
// kFooId and kBarId copied from FindFileHandlerTasks test above.
const char kFooId[] = "hhgbjpmdppecanaaogonaigmmifgpaph";
const char kBarId[] = "odlhccgofgkadkkhcmhgnhgahonahoca";
const char kBazId[] = "plifkpkakemokpflgbnnigcoldgcbdmc";
// Foo.app can handle "text/plain".
// This is a packaged app (file handler).
extensions::ExtensionBuilder foo_app;
foo_app.SetManifest(extensions::DictionaryBuilder()
.Set("name", "Foo")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("app",
extensions::DictionaryBuilder()
.Set("background",
extensions::DictionaryBuilder()
.Set("scripts",
extensions::ListBuilder()
.Append("background.js"))))
.Set("file_handlers",
extensions::DictionaryBuilder()
.Set("text",
extensions::DictionaryBuilder()
.Set("title", "Text")
.Set("types",
extensions::ListBuilder()
.Append("text/plain")))));
foo_app.SetID(kFooId);
extension_service_->AddExtension(foo_app.Build().get());
// Bar.app can only handle ".txt".
// This is an extension (file browser handler).
extensions::ExtensionBuilder bar_app;
bar_app.SetManifest(extensions::DictionaryBuilder()
.Set("name", "Bar")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("file_browser_handlers",
extensions::ListBuilder()
.Append(extensions::DictionaryBuilder()
.Set("id", "open")
.Set("default_title", "open")
.Set("file_filters",
extensions::ListBuilder()
.Append("filesystem:*.txt")))));
bar_app.SetID(kBarId);
extension_service_->AddExtension(bar_app.Build().get());
// Baz.app can handle "text/plain".
// This is a Drive app.
scoped_ptr<google_apis::AppResource> baz_app(new google_apis::AppResource);
baz_app->set_product_id("baz_app_id");
baz_app->set_application_id(kBazId);
baz_app->set_name("Baz");
baz_app->set_object_type("baz_object_type");
ScopedVector<std::string> baz_mime_types;
baz_mime_types.push_back(new std::string("text/plain"));
baz_app->set_primary_mimetypes(baz_mime_types.Pass());
// Set up DriveAppRegistry.
ScopedVector<google_apis::AppResource> app_resources;
app_resources.push_back(baz_app.release());
google_apis::AppList app_list;
app_list.set_items(app_resources.Pass());
drive::DriveAppRegistry drive_app_registry(NULL);
drive_app_registry.UpdateFromAppList(app_list);
// Find apps for "foo.txt". All apps should be found.
PathAndMimeTypeSet path_mime_set;
std::vector<GURL> file_urls;
path_mime_set.insert(
std::make_pair(
drive::util::GetDriveMountPointPath(&test_profile_).AppendASCII(
"foo.txt"),
"text/plain"));
file_urls.push_back(GURL("filesystem:chrome-extension://id/dir/foo.txt"));
std::vector<FullTaskDescriptor> tasks;
FindAllTypesOfTasks(&test_profile_,
&drive_app_registry,
path_mime_set,
file_urls,
&tasks);
ASSERT_EQ(3U, tasks.size());
// Sort the app IDs, as the order is not guaranteed.
std::vector<std::string> app_ids;
app_ids.push_back(tasks[0].task_descriptor().app_id);
app_ids.push_back(tasks[1].task_descriptor().app_id);
app_ids.push_back(tasks[2].task_descriptor().app_id);
std::sort(app_ids.begin(), app_ids.end());
// Confirm that all apps are found.
EXPECT_EQ(kFooId, app_ids[0]);
EXPECT_EQ(kBarId, app_ids[1]);
EXPECT_EQ(kBazId, app_ids[2]);
}
TEST_F(FileManagerFileTasksComplexTest, FindAllTypesOfTasks_GoogleDocument) {
// kFooId and kBarId copied from FindFileHandlerTasks test above.
const char kFooId[] = "hhgbjpmdppecanaaogonaigmmifgpaph";
const char kBarId[] = "odlhccgofgkadkkhcmhgnhgahonahoca";
// Foo.app can handle ".gdoc" files.
scoped_ptr<google_apis::AppResource> foo_app(new google_apis::AppResource);
foo_app->set_product_id("foo_app");
foo_app->set_application_id(kFooId);
foo_app->set_name("Foo");
foo_app->set_object_type("foo_object_type");
ScopedVector<std::string> foo_extensions;
foo_extensions.push_back(new std::string("gdoc")); // Not ".gdoc"
foo_app->set_primary_file_extensions(foo_extensions.Pass());
// Prepare DriveAppRegistry from Foo.app.
ScopedVector<google_apis::AppResource> app_resources;
app_resources.push_back(foo_app.release());
google_apis::AppList app_list;
app_list.set_items(app_resources.Pass());
drive::DriveAppRegistry drive_app_registry(NULL);
drive_app_registry.UpdateFromAppList(app_list);
// Bar.app can handle ".gdoc" files.
// This is an extension (file browser handler).
extensions::ExtensionBuilder bar_app;
bar_app.SetManifest(extensions::DictionaryBuilder()
.Set("name", "Bar")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("file_browser_handlers",
extensions::ListBuilder()
.Append(extensions::DictionaryBuilder()
.Set("id", "open")
.Set("default_title", "open")
.Set("file_filters",
extensions::ListBuilder()
.Append("filesystem:*.gdoc")))));
bar_app.SetID(kBarId);
extension_service_->AddExtension(bar_app.Build().get());
// Files.app can handle ".gdoc" files.
// The ID "kFileManagerAppId" used here is precisely the one that identifies
// the Chrome OS Files.app application.
extensions::ExtensionBuilder files_app;
files_app.SetManifest(extensions::DictionaryBuilder()
.Set("name", "Files")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("file_browser_handlers",
extensions::ListBuilder()
.Append(extensions::DictionaryBuilder()
.Set("id", "open")
.Set("default_title", "open")
.Set("file_filters",
extensions::ListBuilder()
.Append("filesystem:*.gdoc")))));
files_app.SetID(kFileManagerAppId);
extension_service_->AddExtension(files_app.Build().get());
// Find apps for a ".gdoc file". Only the built-in handler of Files.apps
// should be found.
PathAndMimeTypeSet path_mime_set;
std::vector<GURL> file_urls;
path_mime_set.insert(
std::make_pair(
drive::util::GetDriveMountPointPath(&test_profile_).AppendASCII(
"foo.gdoc"),
"application/vnd.google-apps.document"));
file_urls.push_back(GURL("filesystem:chrome-extension://id/dir/foo.gdoc"));
std::vector<FullTaskDescriptor> tasks;
FindAllTypesOfTasks(&test_profile_,
&drive_app_registry,
path_mime_set,
file_urls,
&tasks);
ASSERT_EQ(1U, tasks.size());
EXPECT_EQ(kFileManagerAppId, tasks[0].task_descriptor().app_id);
}
TEST_F(FileManagerFileTasksComplexTest, FindFileHandlerTask_Generic) {
// Since we want to keep the order of the result as foo,bar,baz,qux,
// keep the ids in alphabetical order.
const char kFooId[] = "hhgbjpmdppecanaaogonaigmmifgpaph";
const char kBarId[] = "odlhccgofgkadkkhcmhgnhgahonahoca";
const char kBazId[] = "plifkpkakemokpflgbnnigcoldgcbdmc";
const char kQuxId[] = "pmifkpkakgkadkkhcmhgnigmmifgpaph";
// Foo app provides file handler for text/plain and all file types.
extensions::ExtensionBuilder foo_app;
foo_app.SetManifest(extensions::DictionaryBuilder()
.Set("name", "Foo")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("app", extensions::DictionaryBuilder()
.Set("background", extensions::DictionaryBuilder()
.Set("scripts", extensions::ListBuilder()
.Append("background.js"))))
.Set("file_handlers",
extensions::DictionaryBuilder()
.Set("any",
extensions::DictionaryBuilder()
.Set("types", extensions::ListBuilder()
.Append("*/*")))
.Set("text",
extensions::DictionaryBuilder()
.Set("types", extensions::ListBuilder()
.Append("text/plain")))));
foo_app.SetID(kFooId);
extension_service_->AddExtension(foo_app.Build().get());
// Bar app provides file handler for .txt and not provide generic file
// handler.
extensions::ExtensionBuilder bar_app;
bar_app.SetManifest(extensions::DictionaryBuilder()
.Set("name", "Bar")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("app", extensions::DictionaryBuilder()
.Set("background", extensions::DictionaryBuilder()
.Set("scripts", extensions::ListBuilder()
.Append("background.js"))))
.Set("file_handlers",
extensions::DictionaryBuilder()
.Set("text",
extensions::DictionaryBuilder()
.Set("extensions", extensions::ListBuilder()
.Append("txt")))));
bar_app.SetID(kBarId);
extension_service_->AddExtension(bar_app.Build().get());
// Baz app provides file handler for all extensions and images.
extensions::ExtensionBuilder baz_app;
baz_app.SetManifest(extensions::DictionaryBuilder()
.Set("name", "Baz")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("app", extensions::DictionaryBuilder()
.Set("background", extensions::DictionaryBuilder()
.Set("scripts", extensions::ListBuilder()
.Append("background.js"))))
.Set("file_handlers",
extensions::DictionaryBuilder()
.Set("any",
extensions::DictionaryBuilder()
.Set("extensions", extensions::ListBuilder()
.Append("*")
.Append("bar")))
.Set("image",
extensions::DictionaryBuilder()
.Set("types", extensions::ListBuilder()
.Append("image/*")))));
baz_app.SetID(kBazId);
extension_service_->AddExtension(baz_app.Build().get());
// Qux app provides file handler for all types.
extensions::ExtensionBuilder qux_app;
qux_app.SetManifest(extensions::DictionaryBuilder()
.Set("name", "Qux")
.Set("version", "1.0.0")
.Set("manifest_version", 2)
.Set("app", extensions::DictionaryBuilder()
.Set("background", extensions::DictionaryBuilder()
.Set("scripts", extensions::ListBuilder()
.Append("background.js"))))
.Set("file_handlers",
extensions::DictionaryBuilder()
.Set("any",
extensions::DictionaryBuilder()
.Set("types", extensions::ListBuilder()
.Append("*")))));
qux_app.SetID(kQuxId);
extension_service_->AddExtension(qux_app.Build().get());
// Test case with .txt file
PathAndMimeTypeSet txt_path_mime_set;
txt_path_mime_set.insert(
std::make_pair(
drive::util::GetDriveMountPointPath(&test_profile_).AppendASCII(
"foo.txt"),
"text/plain"));
std::vector<FullTaskDescriptor> txt_result;
FindFileHandlerTasks(&test_profile_, txt_path_mime_set, &txt_result);
EXPECT_EQ(4U, txt_result.size());
// Foo app provides a handler for text/plain.
EXPECT_EQ("Foo", txt_result[0].task_title());
EXPECT_FALSE(txt_result[0].is_generic_file_handler());
// Bar app provides a handler for .txt.
EXPECT_EQ("Bar", txt_result[1].task_title());
EXPECT_FALSE(txt_result[1].is_generic_file_handler());
// Baz app provides a handler for all extensions.
EXPECT_EQ("Baz", txt_result[2].task_title());
EXPECT_TRUE(txt_result[2].is_generic_file_handler());
// Qux app provides a handler for all types.
EXPECT_EQ("Qux", txt_result[3].task_title());
EXPECT_TRUE(txt_result[3].is_generic_file_handler());
// Test case with .jpg file
PathAndMimeTypeSet jpg_path_mime_set;
jpg_path_mime_set.insert(
std::make_pair(
drive::util::GetDriveMountPointPath(&test_profile_).AppendASCII(
"foo.jpg"),
"image/jpeg"));
std::vector<FullTaskDescriptor> jpg_result;
FindFileHandlerTasks(&test_profile_, jpg_path_mime_set, &jpg_result);
EXPECT_EQ(3U, jpg_result.size());
// Foo app provides a handler for all types.
EXPECT_EQ("Foo", jpg_result[0].task_title());
EXPECT_TRUE(jpg_result[0].is_generic_file_handler());
// Baz app provides a handler for image/*. A partial wildcarded handler is
// treated as non-generic handler.
EXPECT_EQ("Baz", jpg_result[1].task_title());
EXPECT_FALSE(jpg_result[1].is_generic_file_handler());
// Qux app provides a handler for all types.
EXPECT_EQ("Qux", jpg_result[2].task_title());
EXPECT_TRUE(jpg_result[2].is_generic_file_handler());
}
} // namespace file_tasks
} // namespace file_manager.
|