Fix the unit test on macOS

This commit is contained in:
DreamPiggy 2024-05-08 16:44:34 +08:00
parent 78fe2284e0
commit b2d6372254
2 changed files with 12 additions and 11 deletions

View File

@ -290,9 +290,6 @@ static const CGFloat kDestSeemOverlap = 2.0f; // the numbers of pixels to over
}
+ (CGColorSpaceRef)colorSpaceGetDeviceRGB {
static CGColorSpaceRef colorSpace;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
#if SD_MAC
NSScreen *mainScreen = nil;
if (@available(macOS 10.12, *)) {
@ -300,12 +297,16 @@ static const CGFloat kDestSeemOverlap = 2.0f; // the numbers of pixels to over
} else {
mainScreen = [NSScreen screens].firstObject;
}
colorSpace = mainScreen.colorSpace.CGColorSpace;
CGColorSpaceRef colorSpace = mainScreen.colorSpace.CGColorSpace;
return colorSpace;
#else
static CGColorSpaceRef colorSpace;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
colorSpace = CGColorSpaceCreateWithName(kCGColorSpaceSRGB);
#endif
});
return colorSpace;
#endif
}
+ (SDImagePixelFormat)preferredPixelFormat:(BOOL)containsAlpha {

View File

@ -217,7 +217,7 @@
- (void)test14ThatHEIFWorks {
if (@available(iOS 11, tvOS 11, macOS 10.13, *)) {
NSURL *heifURL = [[NSBundle bundleForClass:[self class]] URLForResource:@"TestImage" withExtension:@"heif"];
BOOL supportsEncoding = !SDTestCase.isCI; // GitHub Action Mac env currently does not support HEIC encoding
BOOL supportsEncoding = NO; // public.heif UTI alwsays return false, use public.heic
[self verifyCoder:[SDImageIOCoder sharedCoder]
withLocalImageURL:heifURL
supportsEncoding:supportsEncoding