mirror of https://github.com/oxen-io/session-ios
Fix attachment deleting for outgoing messages
Broken in the disappearing messages beta due to sloppy refactoring. =( // FREEBIEpull/1/head
parent
34868b9b0f
commit
0b4d81002f
@ -1,89 +0,0 @@
|
|||||||
// Copyright © 2016 Open Whisper Systems. All rights reserved.
|
|
||||||
|
|
||||||
#import "TSAttachmentStream.h"
|
|
||||||
#import "TSContactThread.h"
|
|
||||||
#import "TSIncomingMessage.h"
|
|
||||||
#import "TSOutgoingMessage.h"
|
|
||||||
#import "TSStorageManager.h"
|
|
||||||
#import <XCTest/XCTest.h>
|
|
||||||
|
|
||||||
@interface TSThreadTest : XCTestCase
|
|
||||||
|
|
||||||
@end
|
|
||||||
|
|
||||||
@implementation TSThreadTest
|
|
||||||
|
|
||||||
- (void)setUp
|
|
||||||
{
|
|
||||||
[super setUp];
|
|
||||||
|
|
||||||
// Register views, etc.
|
|
||||||
[[TSStorageManager sharedManager] setupDatabase];
|
|
||||||
}
|
|
||||||
|
|
||||||
- (void)tearDown
|
|
||||||
{
|
|
||||||
// Put teardown code here. This method is called after the invocation of each test method in the class.
|
|
||||||
[super tearDown];
|
|
||||||
}
|
|
||||||
|
|
||||||
- (void)testDeletingThreadDeletesInteractions
|
|
||||||
{
|
|
||||||
TSContactThread *thread = [[TSContactThread alloc] initWithUniqueId:@"fake-test-thread"];
|
|
||||||
[thread save];
|
|
||||||
|
|
||||||
[TSInteraction removeAllObjectsInCollection];
|
|
||||||
XCTAssertEqual(0, [thread numberOfInteractions]);
|
|
||||||
|
|
||||||
TSIncomingMessage *incomingMessage = [[TSIncomingMessage alloc] initWithTimestamp:10000
|
|
||||||
inThread:thread
|
|
||||||
messageBody:@"incoming message body"];
|
|
||||||
[incomingMessage save];
|
|
||||||
|
|
||||||
TSOutgoingMessage *outgoingMessage = [[TSOutgoingMessage alloc] initWithTimestamp:20000
|
|
||||||
inThread:thread
|
|
||||||
messageBody:@"outgoing message body"];
|
|
||||||
[outgoingMessage save];
|
|
||||||
|
|
||||||
XCTAssertEqual(2, [thread numberOfInteractions]);
|
|
||||||
|
|
||||||
[thread remove];
|
|
||||||
XCTAssertEqual(0, [thread numberOfInteractions]);
|
|
||||||
XCTAssertEqual(0, [TSInteraction numberOfKeysInCollection]);
|
|
||||||
}
|
|
||||||
|
|
||||||
- (void)testDeletingThreadDeletesAttachmentFiles
|
|
||||||
{
|
|
||||||
TSContactThread *thread = [[TSContactThread alloc] initWithUniqueId:@"fake-test-thread"];
|
|
||||||
[thread save];
|
|
||||||
|
|
||||||
// Sanity check
|
|
||||||
[TSInteraction removeAllObjectsInCollection];
|
|
||||||
XCTAssertEqual(0, [thread numberOfInteractions]);
|
|
||||||
|
|
||||||
TSAttachmentStream *attachment = [[TSAttachmentStream alloc] initWithIdentifier:@"fake-photo-attachment-id"
|
|
||||||
data:[[NSData alloc] init]
|
|
||||||
key:[[NSData alloc] init]
|
|
||||||
contentType:@"image/jpeg"];
|
|
||||||
[attachment save];
|
|
||||||
|
|
||||||
BOOL fileWasCreated = [[NSFileManager defaultManager] fileExistsAtPath:[attachment filePath]];
|
|
||||||
XCTAssert(fileWasCreated);
|
|
||||||
|
|
||||||
TSIncomingMessage *incomingMessage = [[TSIncomingMessage alloc] initWithTimestamp:10000
|
|
||||||
inThread:thread
|
|
||||||
messageBody:@"incoming message body"
|
|
||||||
attachmentIds:@[ attachment.uniqueId ]];
|
|
||||||
[incomingMessage save];
|
|
||||||
|
|
||||||
// Sanity check
|
|
||||||
XCTAssertEqual(1, [thread numberOfInteractions]);
|
|
||||||
|
|
||||||
[thread remove];
|
|
||||||
XCTAssertEqual(0, [thread numberOfInteractions]);
|
|
||||||
|
|
||||||
BOOL fileStillExists = [[NSFileManager defaultManager] fileExistsAtPath:[attachment filePath]];
|
|
||||||
XCTAssertFalse(fileStillExists);
|
|
||||||
}
|
|
||||||
|
|
||||||
@end
|
|
@ -0,0 +1,115 @@
|
|||||||
|
// Copyright © 2016 Open Whisper Systems. All rights reserved.
|
||||||
|
|
||||||
|
#import "TSAttachmentStream.h"
|
||||||
|
#import "TSContactThread.h"
|
||||||
|
#import "TSIncomingMessage.h"
|
||||||
|
#import "TSOutgoingMessage.h"
|
||||||
|
#import "TSStorageManager.h"
|
||||||
|
#import <XCTest/XCTest.h>
|
||||||
|
|
||||||
|
@interface TSThreadTest : XCTestCase
|
||||||
|
|
||||||
|
@end
|
||||||
|
|
||||||
|
@implementation TSThreadTest
|
||||||
|
|
||||||
|
- (void)setUp
|
||||||
|
{
|
||||||
|
[super setUp];
|
||||||
|
|
||||||
|
// Register views, etc.
|
||||||
|
[[TSStorageManager sharedManager] setupDatabase];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)tearDown
|
||||||
|
{
|
||||||
|
// Put teardown code here. This method is called after the invocation of each test method in the class.
|
||||||
|
[super tearDown];
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)testDeletingThreadDeletesInteractions
|
||||||
|
{
|
||||||
|
TSContactThread *thread = [[TSContactThread alloc] initWithUniqueId:@"fake-test-thread"];
|
||||||
|
[thread save];
|
||||||
|
|
||||||
|
[TSInteraction removeAllObjectsInCollection];
|
||||||
|
XCTAssertEqual(0, [thread numberOfInteractions]);
|
||||||
|
|
||||||
|
TSIncomingMessage *incomingMessage = [[TSIncomingMessage alloc] initWithTimestamp:10000
|
||||||
|
inThread:thread
|
||||||
|
authorId:@"fake-author-id"
|
||||||
|
messageBody:@"Incoming message body"];
|
||||||
|
[incomingMessage save];
|
||||||
|
|
||||||
|
TSOutgoingMessage *outgoingMessage =
|
||||||
|
[[TSOutgoingMessage alloc] initWithTimestamp:20000 inThread:thread messageBody:@"outgoing message body"];
|
||||||
|
[outgoingMessage save];
|
||||||
|
|
||||||
|
XCTAssertEqual(2, [thread numberOfInteractions]);
|
||||||
|
|
||||||
|
[thread remove];
|
||||||
|
XCTAssertEqual(0, [thread numberOfInteractions]);
|
||||||
|
XCTAssertEqual(0, [TSInteraction numberOfKeysInCollection]);
|
||||||
|
}
|
||||||
|
|
||||||
|
- (void)testDeletingThreadDeletesAttachmentFiles
|
||||||
|
{
|
||||||
|
TSContactThread *thread = [[TSContactThread alloc] initWithUniqueId:@"fake-test-thread"];
|
||||||
|
[thread save];
|
||||||
|
|
||||||
|
// Sanity check
|
||||||
|
[TSInteraction removeAllObjectsInCollection];
|
||||||
|
XCTAssertEqual(0, [thread numberOfInteractions]);
|
||||||
|
|
||||||
|
TSAttachmentStream *incomingAttachment =
|
||||||
|
[[TSAttachmentStream alloc] initWithIdentifier:@"fake-incoming-photo-attachment-id"
|
||||||
|
data:[[NSData alloc] init]
|
||||||
|
key:[[NSData alloc] init]
|
||||||
|
contentType:@"image/jpeg"];
|
||||||
|
[incomingAttachment save];
|
||||||
|
|
||||||
|
// Sanity check
|
||||||
|
BOOL incomingFileWasCreated = [[NSFileManager defaultManager] fileExistsAtPath:[incomingAttachment filePath]];
|
||||||
|
XCTAssert(incomingFileWasCreated);
|
||||||
|
|
||||||
|
TSIncomingMessage *incomingMessage =
|
||||||
|
[[TSIncomingMessage alloc] initWithTimestamp:10000
|
||||||
|
inThread:thread
|
||||||
|
authorId:@"fake-author-id"
|
||||||
|
messageBody:@"incoming message body"
|
||||||
|
attachmentIds:[NSMutableArray arrayWithObject:incomingAttachment.uniqueId]];
|
||||||
|
[incomingMessage save];
|
||||||
|
|
||||||
|
TSAttachmentStream *outgoingAttachment =
|
||||||
|
[[TSAttachmentStream alloc] initWithIdentifier:@"fake-outgoing-photo-attachment-id"
|
||||||
|
data:[[NSData alloc] init]
|
||||||
|
key:[[NSData alloc] init]
|
||||||
|
contentType:@"image/jpeg"];
|
||||||
|
[outgoingAttachment save];
|
||||||
|
|
||||||
|
// Sanity check
|
||||||
|
BOOL outgoingFileWasCreated = [[NSFileManager defaultManager] fileExistsAtPath:[outgoingAttachment filePath]];
|
||||||
|
XCTAssert(outgoingFileWasCreated);
|
||||||
|
|
||||||
|
TSOutgoingMessage *outgoingMessage =
|
||||||
|
[[TSOutgoingMessage alloc] initWithTimestamp:10000
|
||||||
|
inThread:thread
|
||||||
|
messageBody:@"outgoing message body"
|
||||||
|
attachmentIds:[NSMutableArray arrayWithObject:outgoingAttachment.uniqueId]];
|
||||||
|
[outgoingMessage save];
|
||||||
|
|
||||||
|
// Sanity check
|
||||||
|
XCTAssertEqual(2, [thread numberOfInteractions]);
|
||||||
|
|
||||||
|
// Actual Test Follows
|
||||||
|
[thread remove];
|
||||||
|
XCTAssertEqual(0, [thread numberOfInteractions]);
|
||||||
|
|
||||||
|
BOOL incomingFileStillExists = [[NSFileManager defaultManager] fileExistsAtPath:[incomingAttachment filePath]];
|
||||||
|
XCTAssertFalse(incomingFileStillExists);
|
||||||
|
|
||||||
|
BOOL outgoingFileStillExists = [[NSFileManager defaultManager] fileExistsAtPath:[outgoingAttachment filePath]];
|
||||||
|
XCTAssertFalse(outgoingFileStillExists);
|
||||||
|
}
|
||||||
|
|
||||||
|
@end
|
Loading…
Reference in New Issue