forked from cocos2d/cocos2d-objc
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCCPackagesTestFixturesAndHelpers.m
146 lines (121 loc) · 5.38 KB
/
CCPackagesTestFixturesAndHelpers.m
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
#import "CCPackagesTestFixturesAndHelpers.h"
#import "CCPackageTypes.h"
#import "CCPackage.h"
#import "CCPackageCocos2dEnabler.h"
#import "CCPackage_private.h"
#import "CCFileLocator.h"
#import "CCPackageHelper.h"
@implementation CCPackagesTestFixturesAndHelpers
+ (void)cleanCachesFolder
{
NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error;
NSArray *array = [fileManager contentsOfDirectoryAtPath:[CCPackageHelper cachesFolder] error:nil];
for (NSString *filename in array)
{
NSString *filePath = [[CCPackageHelper cachesFolder] stringByAppendingPathComponent:filename];
if (![fileManager removeItemAtPath:filePath error:&error] && error.code != 4)
{
NSLog(@"ERROR: tearDown remove packages install folder %@", error);
}
}
}
+ (void)cleanTempFolder
{
NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error;
NSArray *array = [fileManager contentsOfDirectoryAtPath:NSTemporaryDirectory() error:nil];
for (NSString *filename in array)
{
NSString *filePath = [[CCPackageHelper cachesFolder] stringByAppendingPathComponent:filename];
if (![fileManager removeItemAtPath:filePath error:&error] && error.code != 4)
{
NSLog(@"ERROR: tearDown remove packages install folder %@", error);
}
}
}
+ (CCPackage *)testPackageInitial
{
return [self testPackageWithStatus:CCPackageStatusInitial installRelPath:nil];
}
+ (CCPackage *)testPackageWithStatus:(CCPackageStatus)status installRelPath:(NSString *)installFolderPath
{
NSString *pathToUnzippedPackage = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"Resources-shared/Packages/testpackage-iOS-phonehd_unzipped/testpackage-iOS-phonehd"];
NSString *pathToZippedPackage = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"Resources-shared/Packages/testpackage-iOS-phonehd.zip"];
NSFileManager *fileManager = [NSFileManager defaultManager];
[fileManager createDirectoryAtPath:[[CCPackageHelper cachesFolder] stringByAppendingPathComponent:installFolderPath]
withIntermediateDirectories:YES
attributes:nil
error:nil];
CCPackage *package = [[CCPackage alloc] initWithName:@"testpackage"
resolution:@"phonehd"
os:@"iOS"
remoteURL:[[NSURL URLWithString:@"http://manager.test"]
URLByAppendingPathComponent:@"testpackage-iOS-phonehd.zip"]];
package.status = status;
if (status == CCPackageStatusInstalledDisabled
|| status == CCPackageStatusInstalledEnabled)
{
package.installRelURL = [NSURL URLWithString:[installFolderPath stringByAppendingPathComponent:@"testpackage-iOS-phonehd"]];
[fileManager createDirectoryAtPath:package.installRelURL.path withIntermediateDirectories:YES attributes:nil error:nil];
[fileManager copyItemAtPath:pathToUnzippedPackage toPath:package.installFullURL.path error:nil];
}
if (status == CCPackageStatusInstalledEnabled)
{
CCPackageCocos2dEnabler *packageEnabler = [[CCPackageCocos2dEnabler alloc] init];
[packageEnabler enablePackages:@[package]];
}
if (status == CCPackageStatusDownloaded)
{
NSString *pathDownloadFolder = [NSTemporaryDirectory() stringByAppendingPathComponent:@"Downloads"];
[fileManager createDirectoryAtPath:pathDownloadFolder withIntermediateDirectories:YES attributes:nil error:nil];
package.localDownloadURL = [NSURL fileURLWithPath:[pathDownloadFolder stringByAppendingPathComponent:@"testpackage-iOS-phonehd.zip"]];
[fileManager copyItemAtPath:pathToZippedPackage toPath:package.localDownloadURL.path error:nil];
}
if (status == CCPackageStatusUnzipped)
{
package.folderName = @"testpackage-iOS-phonehd";
NSString *pathToUnzippedPackageContents = [pathToUnzippedPackage stringByDeletingLastPathComponent];
NSString *unzipPath = [NSTemporaryDirectory() stringByAppendingPathComponent:package.folderName];
NSError *error;
[fileManager removeItemAtPath:unzipPath error:nil];
if (![fileManager copyItemAtPath:pathToUnzippedPackageContents toPath:unzipPath error:&error])
{
NSLog(@"%@", error);
}
package.unzipURL = [NSURL fileURLWithPath:unzipPath];
package.enableOnDownload = NO;
}
return package;
}
+ (void)waitForCondition:(WaitConditionBlock)waitConditionBlock
{
while (waitConditionBlock())
{
[[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
}
}
+ (BOOL)isURLInCocos2dSearchPath:(NSURL *)URL
{
for (NSString *aSearchPath in [CCFileUtils sharedFileUtils].searchPath)
{
NSString *fullPath = [[CCPackageHelper cachesFolder] stringByAppendingPathComponent:URL.path];
if ([aSearchPath isEqualToString:fullPath])
{
return YES;
}
}
return NO;
}
+ (BOOL)isPackageInSearchPath:(CCPackage *)package
{
for (NSString *aSearchPath in [CCFileUtils sharedFileUtils].searchPath)
{
if ([aSearchPath isEqualToString:package.installFullURL.path])
{
return YES;
}
}
return NO;
}
@end