- Migrate protocol stores to KVStores - Introduce AnyDatabaseQueue - Move messaging pipeline to AnyTransactions - Migrate specialized PushDecrypt job to generic JobQueue
64 lines
1.3 KiB
Objective-C
64 lines
1.3 KiB
Objective-C
//
|
|
// Copyright (c) 2019 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "SignalBaseTest.h"
|
|
#import "Environment.h"
|
|
#import <SignalServiceKit/OWSPrimaryStorage.h>
|
|
#import <SignalServiceKit/SignalServiceKit-Swift.h>
|
|
#import <SignalServiceKit/TestAppContext.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@implementation SignalBaseTest
|
|
|
|
- (void)setUp
|
|
{
|
|
OWSLogInfo(@"");
|
|
|
|
[super setUp];
|
|
|
|
ClearCurrentAppContextForTests();
|
|
[Environment clearSharedForTests];
|
|
[SSKEnvironment clearSharedForTests];
|
|
|
|
SetCurrentAppContext([TestAppContext new]);
|
|
[MockSSKEnvironment activate];
|
|
[MockEnvironment activate];
|
|
}
|
|
|
|
- (void)tearDown
|
|
{
|
|
OWSLogInfo(@"");
|
|
|
|
[super tearDown];
|
|
}
|
|
|
|
-(void)readWithBlock:(void (^)(SDSAnyReadTransaction *))block
|
|
{
|
|
[SDSDatabaseStorage.shared readWithBlock:block];
|
|
}
|
|
|
|
-(void)writeWithBlock:(void (^)(SDSAnyWriteTransaction *))block
|
|
{
|
|
[SDSDatabaseStorage.shared writeWithBlock:block];
|
|
}
|
|
|
|
- (void)yapReadWithBlock:(void (^)(YapDatabaseReadTransaction *transaction))block
|
|
{
|
|
OWSAssert(block);
|
|
|
|
[[SSKEnvironment.shared.primaryStorage newDatabaseConnection] readWithBlock:block];
|
|
}
|
|
|
|
- (void)yapWriteWithBlock:(void (^)(YapDatabaseReadWriteTransaction *transaction))block
|
|
{
|
|
OWSAssert(block);
|
|
|
|
[[SSKEnvironment.shared.primaryStorage newDatabaseConnection] readWriteWithBlock:block];
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|