Skip to content

Commit

Permalink
Add NSButtonCell, NSMenuItem keyEquivalentModifierMask encoding tests (
Browse files Browse the repository at this point in the history
  • Loading branch information
qmfrederik authored Apr 25, 2024
1 parent 2ebf167 commit 2ab5953
Show file tree
Hide file tree
Showing 4 changed files with 115 additions and 0 deletions.
Empty file added Tests/gui/NSButtonCell/TestInfo
Empty file.
66 changes: 66 additions & 0 deletions Tests/gui/NSButtonCell/encoding.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
#import "ObjectTesting.h"

#import <Foundation/NSData.h>
#import <Foundation/NSValue.h>
#import <AppKit/NSApplication.h>
#import <AppKit/NSEvent.h>
#import <AppKit/NSButtonCell.h>

int main()
{
START_SET("NSButtonCell encoding tests")

NS_DURING
{
[NSApplication sharedApplication];
}
NS_HANDLER
{
if ([[localException name] isEqualToString: NSInternalInconsistencyException ])
SKIP("It looks like GNUstep backend is not yet installed")
}
NS_ENDHANDLER

NSString* mask = @"NSButtonFlags2";
NSButtonCell* item = [[NSButtonCell alloc] init];
item.keyEquivalent = @"A";
item.keyEquivalentModifierMask = NSShiftKeyMask;

NSMutableData *data = [NSMutableData data];
NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];

[archiver encodeRootObject:item];
[archiver finishEncoding];

NSError* error;
NSDictionary* archive = [NSPropertyListSerialization propertyListWithData:data options:NSPropertyListImmutable format:nil error:&error];

NSArray* topLevelObjects = [archive objectForKey:@"$objects"];

NSDictionary* dict;

for (id element in topLevelObjects)
{
if ([element isKindOfClass:[NSDictionary class]])
{
dict = (NSDictionary*)element;

if ([[dict allKeys] containsObject:mask])
{
break;
}
else
{
dict = nil;
}
}
}

PASS(dict != nil, "Found a dict with a NSButtonFlags2 entry");

NSNumber* encodedKeyMask = [dict valueForKey:mask];
PASS(encodedKeyMask != nil, "Retrieved the NSButtonFlags2 value");
PASS([encodedKeyMask intValue] & NSEventModifierFlagDeviceIndependentFlagsMask << 8 == NSShiftKeyMask, "Encoded key mask 0x%x matches expected key mask 0x%x", [encodedKeyMask intValue] & NSEventModifierFlagDeviceIndependentFlagsMask << 8, NSShiftKeyMask << 8);

END_SET("NSButtonCell encoding tests")
}
Empty file added Tests/gui/NSMenuItem/TestInfo
Empty file.
49 changes: 49 additions & 0 deletions Tests/gui/NSMenuItem/encoding.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
#import "ObjectTesting.h"

#import <Foundation/NSData.h>
#import <Foundation/NSValue.h>
#import <AppKit/NSEvent.h>
#import <AppKit/NSMenuItem.h>

int main()
{
NSString* mask = @"NSKeyEquivModMask";
NSMenuItem* item = [[NSMenuItem alloc] init];
item.keyEquivalentModifierMask = NSShiftKeyMask;

NSMutableData *data = [NSMutableData data];
NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];

[archiver encodeRootObject:item];
[archiver finishEncoding];

NSError* error;
NSDictionary* archive = [NSPropertyListSerialization propertyListWithData:data options:NSPropertyListImmutable format:nil error:&error];

NSArray* topLevelObjects = [archive objectForKey:@"$objects"];

NSDictionary* dict;

for (id element in topLevelObjects)
{
if ([element isKindOfClass:[NSDictionary class]])
{
dict = (NSDictionary*)element;

if ([[dict allKeys] containsObject:mask])
{
break;
}
else
{
dict = nil;
}
}
}

PASS(dict != nil, "Found a dict with a NSKeyEquivModMask entry");

NSNumber* encodedKeyMask = [dict valueForKey:mask];
PASS(encodedKeyMask != nil, "Retrieved the NSKeyEquivModMask value");
PASS([encodedKeyMask intValue] == NSShiftKeyMask, "Encoded key mask 0x%x matches expected key mask 0x%x", [encodedKeyMask intValue], NSShiftKeyMask);
}

0 comments on commit 2ab5953

Please sign in to comment.