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
|
// 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/app_list/search/files/justifications.h"
#include "ash/constants/ash_features.h"
#include "ash/strings/grit/ash_strings.h"
#include "base/test/scoped_feature_list.h"
#include "base/time/time.h"
#include "chrome/browser/ash/file_suggest/file_suggest_util.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/base/l10n/l10n_util.h"
namespace app_list::test {
class JustificationsTest : public ::testing::Test {
public:
JustificationsTest() {
scoped_features_.InitWithFeatures(
{}, {ash::features::kLauncherContinueSectionWithRecents,
ash::features::kLauncherContinueSectionWithRecentsRollout});
}
private:
base::test::ScopedFeatureList scoped_features_;
};
TEST_F(JustificationsTest, OpenedOrEdited) {
base::Time now = base::Time::Now();
// Opened more recently than edited.
EXPECT_EQ(
GetJustificationString(ash::FileSuggestionJustificationType::kViewed,
now - base::Seconds(10), /*user_name=*/""),
l10n_util::GetStringUTF16(IDS_APP_LIST_CONTINUE_OPENED_JUST_NOW));
// Edited more recently than opened.
EXPECT_EQ(
GetJustificationString(ash::FileSuggestionJustificationType::kModified,
now - base::Seconds(10), /*user_name=*/""),
l10n_util::GetStringUTF16(IDS_APP_LIST_CONTINUE_EDITED_JUST_NOW));
}
TEST_F(JustificationsTest, EditTimes) {
base::Time now = base::Time::Now();
// Just now.
EXPECT_EQ(
GetJustificationString(ash::FileSuggestionJustificationType::kModified,
now - base::Minutes(5), /*user_name=*/""),
l10n_util::GetStringUTF16(IDS_APP_LIST_CONTINUE_EDITED_JUST_NOW));
// Today.
EXPECT_EQ(
GetJustificationString(ash::FileSuggestionJustificationType::kModified,
now - base::Hours(23), /*user_name=*/""),
l10n_util::GetStringUTF16(IDS_APP_LIST_CONTINUE_EDITED_TODAY));
// Yesterday.
EXPECT_EQ(
GetJustificationString(ash::FileSuggestionJustificationType::kModified,
now - base::Hours(47), /*user_name=*/""),
l10n_util::GetStringUTF16(IDS_APP_LIST_CONTINUE_EDITED_YESTERDAY));
// Past week.
EXPECT_EQ(
GetJustificationString(ash::FileSuggestionJustificationType::kModified,
now - base::Days(6), /*user_name=*/""),
l10n_util::GetStringUTF16(IDS_APP_LIST_CONTINUE_EDITED_PAST_WEEK));
// Past month.
EXPECT_EQ(
GetJustificationString(ash::FileSuggestionJustificationType::kModified,
now - base::Days(30), /*user_name=*/""),
l10n_util::GetStringUTF16(IDS_APP_LIST_CONTINUE_EDITED_PAST_MONTH));
// No string, file too old.
EXPECT_FALSE(
GetJustificationString(ash::FileSuggestionJustificationType::kModified,
now - base::Days(32), /*user_name=*/""));
}
TEST_F(JustificationsTest, OpenTimes) {
base::Time now = base::Time::Now();
// Just now.
EXPECT_EQ(
GetJustificationString(ash::FileSuggestionJustificationType::kViewed,
now - base::Minutes(5), /*user_name=*/""),
l10n_util::GetStringUTF16(IDS_APP_LIST_CONTINUE_OPENED_JUST_NOW));
// Today.
EXPECT_EQ(
GetJustificationString(ash::FileSuggestionJustificationType::kViewed,
now - base::Hours(23), /*user_name=*/""),
l10n_util::GetStringUTF16(IDS_APP_LIST_CONTINUE_OPENED_TODAY));
// Yesterday.
EXPECT_EQ(
GetJustificationString(ash::FileSuggestionJustificationType::kViewed,
now - base::Hours(47), /*user_name=*/""),
l10n_util::GetStringUTF16(IDS_APP_LIST_CONTINUE_OPENED_YESTERDAY));
// Past week.
EXPECT_EQ(
GetJustificationString(ash::FileSuggestionJustificationType::kViewed,
now - base::Days(6), /*user_name=*/""),
l10n_util::GetStringUTF16(IDS_APP_LIST_CONTINUE_OPENED_PAST_WEEK));
// Past month.
EXPECT_EQ(
GetJustificationString(ash::FileSuggestionJustificationType::kViewed,
now - base::Days(30), /*user_name=*/""),
l10n_util::GetStringUTF16(IDS_APP_LIST_CONTINUE_OPENED_PAST_MONTH));
}
} // namespace app_list::test
|