124 lines
3.5 KiB
Mathematica
124 lines
3.5 KiB
Mathematica
|
//
|
||
|
// FMDatabaseAdditionsTests.m
|
||
|
// fmdb
|
||
|
//
|
||
|
// Created by Graham Dennis on 24/11/2013.
|
||
|
//
|
||
|
//
|
||
|
|
||
|
#import <XCTest/XCTest.h>
|
||
|
#import "FMDatabaseAdditions.h"
|
||
|
|
||
|
@interface FMDatabaseAdditionsTests : FMDBTempDBTests
|
||
|
|
||
|
@end
|
||
|
|
||
|
@implementation FMDatabaseAdditionsTests
|
||
|
|
||
|
- (void)setUp
|
||
|
{
|
||
|
[super setUp];
|
||
|
// Put setup code here. This method is called before the invocation of each test method in the class.
|
||
|
}
|
||
|
|
||
|
- (void)tearDown
|
||
|
{
|
||
|
// Put teardown code here. This method is called after the invocation of each test method in the class.
|
||
|
[super tearDown];
|
||
|
}
|
||
|
|
||
|
- (void)testFunkyTableNames
|
||
|
{
|
||
|
[self.db executeUpdate:@"create table '234 fds' (foo text)"];
|
||
|
XCTAssertFalse([self.db hadError], @"table creation should have succeeded");
|
||
|
FMResultSet *rs = [self.db getTableSchema:@"234 fds"];
|
||
|
XCTAssertTrue([rs next], @"Schema should have succeded");
|
||
|
[rs close];
|
||
|
XCTAssertFalse([self.db hadError], @"There shouldn't be any errors");
|
||
|
}
|
||
|
|
||
|
- (void)testBoolForQuery
|
||
|
{
|
||
|
BOOL result = [self.db boolForQuery:@"SELECT ? not null", @""];
|
||
|
XCTAssertTrue(result, @"Empty strings should be considered true");
|
||
|
|
||
|
result = [self.db boolForQuery:@"SELECT ? not null", [NSMutableData data]];
|
||
|
XCTAssertTrue(result, @"Empty mutable data should be considered true");
|
||
|
|
||
|
result = [self.db boolForQuery:@"SELECT ? not null", [NSData data]];
|
||
|
XCTAssertTrue(result, @"Empty data should be considered true");
|
||
|
}
|
||
|
|
||
|
|
||
|
- (void)testIntForQuery
|
||
|
{
|
||
|
[self.db executeUpdate:@"create table t1 (a integer)"];
|
||
|
[self.db executeUpdate:@"insert into t1 values (?)", [NSNumber numberWithInt:5]];
|
||
|
|
||
|
XCTAssertEqual([self.db changes], 1, @"There should only be one change");
|
||
|
|
||
|
int ia = [self.db intForQuery:@"select a from t1 where a = ?", [NSNumber numberWithInt:5]];
|
||
|
XCTAssertEqual(ia, 5, @"foo");
|
||
|
}
|
||
|
|
||
|
- (void)testDateForQuery
|
||
|
{
|
||
|
NSDate *date = [NSDate date];
|
||
|
[self.db executeUpdate:@"create table datetest (a double, b double, c double)"];
|
||
|
[self.db executeUpdate:@"insert into datetest (a, b, c) values (?, ?, 0)" , [NSNull null], date];
|
||
|
|
||
|
NSDate *foo = [self.db dateForQuery:@"select b from datetest where c = 0"];
|
||
|
XCTAssertEqualWithAccuracy([foo timeIntervalSinceDate:date], 0.0, 1.0, @"Dates should be the same to within a second");
|
||
|
}
|
||
|
|
||
|
- (void)testTableExists
|
||
|
{
|
||
|
XCTAssertTrue([self.db executeUpdate:@"create table t4 (a text, b text)"]);
|
||
|
|
||
|
XCTAssertTrue([self.db tableExists:@"t4"]);
|
||
|
XCTAssertFalse([self.db tableExists:@"thisdoesntexist"]);
|
||
|
|
||
|
FMResultSet *rs = [self.db getSchema];
|
||
|
while ([rs next]) {
|
||
|
XCTAssertEqualObjects([rs stringForColumn:@"type"], @"table");
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
- (void)testColumnExists
|
||
|
{
|
||
|
[self.db executeUpdate:@"create table nulltest (a text, b text)"];
|
||
|
|
||
|
XCTAssertTrue([self.db columnExists:@"a" inTableWithName:@"nulltest"]);
|
||
|
XCTAssertTrue([self.db columnExists:@"b" inTableWithName:@"nulltest"]);
|
||
|
XCTAssertFalse([self.db columnExists:@"c" inTableWithName:@"nulltest"]);
|
||
|
}
|
||
|
|
||
|
- (void)testUserVersion {
|
||
|
|
||
|
[[self db] setUserVersion:12];
|
||
|
|
||
|
XCTAssertTrue([[self db] userVersion] == 12);
|
||
|
}
|
||
|
|
||
|
#if SQLITE_VERSION_NUMBER >= 3007017
|
||
|
- (void)testApplicationID
|
||
|
{
|
||
|
uint32_t appID = NSHFSTypeCodeFromFileType(NSFileTypeForHFSTypeCode('fmdb'));
|
||
|
|
||
|
[self.db setApplicationID:appID];
|
||
|
|
||
|
uint32_t rAppID = [self.db applicationID];
|
||
|
|
||
|
XCTAssertEqual(rAppID, appID);
|
||
|
|
||
|
[self.db setApplicationIDString:@"acrn"];
|
||
|
|
||
|
NSString *s = [self.db applicationIDString];
|
||
|
|
||
|
XCTAssertEqualObjects(s, @"acrn");
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
@end
|