Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1614)

Unified Diff: components/open_from_clipboard/clipboard_recent_content_ios_unittest.mm

Issue 2782823003: Rewrite implementation of ClipboardRecentContent in Objective C. (Closed)
Patch Set: address comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/open_from_clipboard/clipboard_recent_content_ios_unittest.mm
diff --git a/components/open_from_clipboard/clipboard_recent_content_ios_unittest.mm b/components/open_from_clipboard/clipboard_recent_content_ios_unittest.mm
index 670a92354c071e8c1d0ace28573b338e4a0cebb6..917d0555678165fbff6de1596e8f79cfa9e969ac 100644
--- a/components/open_from_clipboard/clipboard_recent_content_ios_unittest.mm
+++ b/components/open_from_clipboard/clipboard_recent_content_ios_unittest.mm
@@ -9,6 +9,7 @@
#include <memory>
+#import "components/open_from_clipboard/clipboard_recent_content_ios_impl.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "testing/platform_test.h"
@@ -45,20 +46,48 @@ const char kAppSpecificScheme[] = "test";
NSTimeInterval kSevenHours = 60 * 60 * 7;
} // namespace
+@interface ClipboardRecentContentIOSImplWithFakeUptime
+ : ClipboardRecentContentIOSImpl
+@property(nonatomic) NSTimeInterval fakeUptime;
+
+- (instancetype)initWithDelegate:
+ (id<ClipboardRecentContentMetricsDelegate>)delegate
+ authorizedSchemes:(NSArray*)authorizedSchemes
+ userDefaults:(NSUserDefaults*)groupUserDefaults
+ uptime:(NSTimeInterval)uptime;
+
+@end
+
+@implementation ClipboardRecentContentIOSImplWithFakeUptime
+
+@synthesize fakeUptime = _fakeUptime;
+
+- (instancetype)initWithDelegate:
+ (id<ClipboardRecentContentMetricsDelegate>)delegate
+ authorizedSchemes:(NSArray*)authorizedSchemes
+ userDefaults:(NSUserDefaults*)groupUserDefaults
+ uptime:(NSTimeInterval)uptime {
+ self = [super initWithDelegate:delegate
+ authorizedSchemes:authorizedSchemes
+ userDefaults:groupUserDefaults];
+ if (self) {
+ _fakeUptime = uptime;
+ }
+ return self;
+}
+
+- (NSTimeInterval)uptime {
sdefresne 2017/04/03 09:27:17 I would change this to a public property instead (
+ return self.fakeUptime;
+}
+
+@end
+
class ClipboardRecentContentIOSWithFakeUptime
: public ClipboardRecentContentIOS {
public:
ClipboardRecentContentIOSWithFakeUptime(const std::string& application_scheme,
NSUserDefaults* group_user_defaults)
: ClipboardRecentContentIOS(application_scheme, group_user_defaults) {}
- // Sets the uptime.
- void SetUptime(base::TimeDelta uptime) { uptime_ = uptime; }
-
- protected:
- base::TimeDelta Uptime() const override { return uptime_; }
-
- private:
- base::TimeDelta uptime_;
};
class ClipboardRecentContentIOSTest : public ::testing::Test {
@@ -78,16 +107,18 @@ class ClipboardRecentContentIOSTest : public ::testing::Test {
base::TimeDelta time_delta) {
clipboard_content_.reset(new ClipboardRecentContentIOSWithFakeUptime(
application_scheme, [NSUserDefaults standardUserDefaults]));
- clipboard_content_->SetUptime(time_delta);
- }
- void SetStoredPasteboardChangeDate(NSDate* changeDate) {
- clipboard_content_->last_pasteboard_change_date_.reset([changeDate copy]);
- clipboard_content_->SaveToUserDefaults();
+ clipboard_content_->implementation_.reset(
sdefresne 2017/04/03 09:27:17 This is exactly how you should not write test. Ins
sdefresne 2017/04/03 09:37:32 Sorry, this comment tone is too negative. I should
lody 2017/04/04 13:42:19 Done.
+ [[ClipboardRecentContentIOSImplWithFakeUptime alloc]
+ initWithDelegate:nil
+ authorizedSchemes:clipboard_content_->GetAuthorizedSchemeList(
sdefresne 2017/04/03 09:27:17 Just inject a know list/set of schemes here, no ne
lody 2017/04/04 13:42:19 Done.
+ application_scheme)
+ userDefaults:[NSUserDefaults standardUserDefaults]
+ uptime:time_delta.InSecondsF()]);
}
- void SetStoredPasteboardChangeCount(NSInteger newChangeCount) {
- clipboard_content_->last_pasteboard_change_count_ = newChangeCount;
+ void SetStoredPasteboardChangeDate(NSDate* change_date) {
+ clipboard_content_->SetLastPasteboardChangeDate([change_date copy]);
sdefresne 2017/04/03 09:27:17 Can't you simulate this by instead manipulating th
lody 2017/04/04 13:42:19 I don't think so? There's two things, one is the u
clipboard_content_->SaveToUserDefaults();
}
@@ -164,7 +195,7 @@ TEST_F(ClipboardRecentContentIOSTest, SupressedPasteboard) {
// Check that the pasteboard content is still suppressed.
EXPECT_FALSE(clipboard_content_->GetRecentURLFromClipboard(&gurl));
- // Check that the even if the device is restarted, pasteboard content is
+ // Check that even if the device is restarted, pasteboard content is
// still suppressed.
SimulateDeviceRestart();
EXPECT_FALSE(clipboard_content_->GetRecentURLFromClipboard(&gurl));

Powered by Google App Engine
This is Rietveld 408576698