blob: 0b69f43558cbd8f2cb313582f7a56c9891d78a98 (
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
|
// Copyright 2011 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.
#import "ios/chrome/browser/snapshots/snapshots_util.h"
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#include "base/ios/ios_util.h"
#include "base/mac/foundation_util.h"
#include "base/path_service.h"
#include "base/strings/sys_string_conversions.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace {
bool RegexMatchesOneSnapshotPath(NSString* regexString) {
NSRegularExpression* regex =
[NSRegularExpression regularExpressionWithPattern:regexString
options:0
error:nullptr];
std::vector<base::FilePath> snapshotsPaths;
GetSnapshotsPaths(&snapshotsPaths);
int numberOfMatches = 0;
for (const base::FilePath& path : snapshotsPaths) {
NSString* string =
[NSString stringWithCString:path.value().c_str()
encoding:[NSString defaultCStringEncoding]];
if ([regex numberOfMatchesInString:string
options:0
range:NSMakeRange(0, [string length])])
numberOfMatches++;
}
return numberOfMatches == 1;
}
TEST(SnapshotsUtilTest, TestSnapshotList) {
NSString* scaleModifier = @"";
CGFloat scale = [UIScreen mainScreen].scale;
if (scale > 1) {
scaleModifier = [NSString stringWithFormat:@"@%.0fx", scale];
}
NSString* path = @"Main";
if (base::ios::IsRunningOnIOS8OrLater()) {
path = base::SysUTF8ToNSString(base::mac::BaseBundleID());
}
NSString* filename = @"UIApplicationAutomaticSnapshotDefault-LandscapeRight";
NSString* regex = [NSString
stringWithFormat:@".*/%@/%@%@.png$", path, filename, scaleModifier];
EXPECT_FALSE(RegexMatchesOneSnapshotPath(@".*"));
EXPECT_FALSE(RegexMatchesOneSnapshotPath(@"foo"));
EXPECT_TRUE(RegexMatchesOneSnapshotPath(@".*LandscapeRight.*"));
EXPECT_TRUE(RegexMatchesOneSnapshotPath(regex));
}
} // anonymous namespace
|