summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests/DevAPISpecs/SDLFileSpec.m
blob: 7e92db8af75d0e1ddeaab37027e7c17c4a6d87f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
#import <Quick/Quick.h>
#import <Nimble/Nimble.h>

#import "SDLFile.h"
#import "SDLFileType.h"


QuickSpecBegin(SDLFileSpec)

describe(@"SDLFile", ^{
    __block SDLFile *testFile = nil;
    
    context(@"when created with data", ^{
        __block NSData *testData = nil;
        __block NSString *testName = nil;
        __block NSString *testFileType = nil;
        __block BOOL testPersistence = NO;
        
        context(@"using data", ^{
            testName = @"Example Name";
            testData = [@"Example Data" dataUsingEncoding:NSUTF8StringEncoding];
            testFileType = @"mp3";
            testPersistence = YES;
            
            beforeEach(^{
                testFile = [[SDLFile alloc] initWithData:testData name:testName fileExtension:testFileType persistent:testPersistence];
            });
            
            it(@"should not store the data in a temp file", ^{
                expect(testFile.fileURL).to(beNil());
                expect(@([[NSFileManager defaultManager] fileExistsAtPath:testFile.fileURL.path])).to(beFalsy());
            });
            
            it(@"should correctly store data", ^{
                expect(testFile.data).to(equal(testData));
            });

            it(@"should correctly store persistance", ^{
                expect(testFile.persistent).to(equal(@YES));
            });
            
            it(@"should correctly store name", ^{
                expect(testFile.name).to(equal(testName));
            });
            
            it(@"should correctly store file type", ^{
                expect(testFile.fileType).to(equal(SDLFileTypeMP3));
            });
            
            it(@"should correctly start as non-overwrite", ^{
                expect(@(testFile.overwrite)).to(equal(@NO));
            });
        });
    });
    
    context(@"when created with a file url", ^{
        __block NSURL *testFileURL = nil;
        __block NSString *testFileName = nil;
        
        context(@"when created with a non-extant file url", ^{
            beforeEach(^{
                NSBundle *testBundle = [NSBundle bundleForClass:[self class]];
                testFileURL = [testBundle URLForResource:@"imageThatDoesNotExist" withExtension:@"jpg"];
                testFileName = @"someImage";
                
                testFile = [[SDLFile alloc] initWithFileURL:testFileURL name:testFileName persistent:NO];
            });
            
            it(@"it should be nil", ^{
                expect(testFile).to(beNil());
            });
        });
        
        context(@"when created with an extant file url", ^{
            context(@"that is ephemeral", ^{
                beforeEach(^{
                    NSBundle *testBundle = [NSBundle bundleForClass:[self class]];
                    testFileURL = [testBundle URLForResource:@"testImageJPG" withExtension:@"jpg"];
                    testFileName = @"someImage";
                    
                    testFile = [SDLFile fileAtFileURL:testFileURL name:testFileName];
                });

                it(@"should correctly store the file url", ^{
                    expect(testFile.fileURL).to(equal(testFileURL));
                });

                it(@"should not store any data", ^{
                    expect(testFile.data.length).to(beGreaterThan(0));
                });
                
                it(@"should correctly store the file name", ^{
                    expect(testFile.name).to(match(testFileName));
                });
                
                it(@"should correctly store the file type", ^{
                    expect(testFile.fileType).to(equal(SDLFileTypeJPEG));
                });
                
                it(@"should correctly store persistence", ^{
                    expect(@(testFile.persistent)).to(equal(@NO));
                });
                
                it(@"should correctly start as non-overwrite", ^{
                    expect(@(testFile.overwrite)).to(equal(@NO));
                });
            });
            
            context(@"That is persistent", ^{
                beforeEach(^{
                    NSBundle *testBundle = [NSBundle bundleForClass:[self class]];
                    testFileURL = [testBundle URLForResource:@"testImageJPG" withExtension:@"jpg"];
                    testFileName = @"someImage";
                    
                    testFile = [SDLFile persistentFileAtFileURL:testFileURL name:testFileName];
                });

                it(@"should correctly store the file url", ^{
                    expect(testFile.fileURL).to(equal(testFileURL));
                });

                it(@"should not store any data", ^{
                    expect(testFile.data.length).to(beGreaterThan(0));
                });

                it(@"should correctly store name", ^{
                    expect(testFile.name).to(equal(testFileName));
                });
                
                it(@"should correctly store file type", ^{
                    expect(testFile.fileType).to(equal(SDLFileTypeJPEG));
                });
                
                it(@"should correctly store persistence", ^{
                    expect(@(testFile.persistent)).to(equal(@YES));
                });
                
                it(@"should correctly start as non-overwrite", ^{
                    expect(@(testFile.overwrite)).to(equal(@NO));
                });
            });
        });
        
        describe(@"it should recognize file of type", ^{
            context(@"jpg", ^{
                beforeEach(^{
                    NSBundle *testBundle = [NSBundle bundleForClass:[self class]];
                    testFileURL = [testBundle URLForResource:@"testImageJPG" withExtension:@"jpg"];
                    testFileName = @"someJPG";
                    
                    testFile = [[SDLFile alloc] initWithFileURL:testFileURL name:testFileName persistent:NO];
                });
                
                it(@"should properly interpret file type", ^{
                    expect(testFile.fileType).to(equal(SDLFileTypeJPEG));
                });
            });
            
            context(@"jpeg", ^{
                beforeEach(^{
                    NSBundle *testBundle = [NSBundle bundleForClass:[self class]];
                    testFileURL = [testBundle URLForResource:@"testImageJPEG" withExtension:@"jpeg"];
                    testFileName = @"someJPEG";
                    
                    testFile = [[SDLFile alloc] initWithFileURL:testFileURL name:testFileName persistent:NO];
                });
                
                it(@"should properly interpret file type", ^{
                    expect(testFile.fileType).to(equal(SDLFileTypeJPEG));
                });
            });
            
            context(@"png", ^{
                beforeEach(^{
                    NSBundle *testBundle = [NSBundle bundleForClass:[self class]];
                    testFileURL = [testBundle URLForResource:@"testImagePNG" withExtension:@"png"];
                    testFileName = @"somePNG";
                    
                    testFile = [[SDLFile alloc] initWithFileURL:testFileURL name:testFileName persistent:NO];
                });
                
                it(@"should properly interpret file type", ^{
                    expect(testFile.fileType).to(equal(SDLFileTypePNG));
                });
            });
            
            context(@"bmp", ^{
                beforeEach(^{
                    NSBundle *testBundle = [NSBundle bundleForClass:[self class]];
                    testFileURL = [testBundle URLForResource:@"testImageBMP" withExtension:@"bmp"];
                    testFileName = @"someBMP";
                    
                    testFile = [[SDLFile alloc] initWithFileURL:testFileURL name:testFileName persistent:NO];
                });
                
                it(@"should properly interpret file type", ^{
                    expect(testFile.fileType).to(equal(SDLFileTypeBMP));
                });
            });
            
            context(@"json", ^{
                beforeEach(^{
                    NSBundle *testBundle = [NSBundle bundleForClass:[self class]];
                    testFileURL = [testBundle URLForResource:@"testFileJSON" withExtension:@"json"];
                    testFileName = @"someJSON";
                    
                    testFile = [[SDLFile alloc] initWithFileURL:testFileURL name:testFileName persistent:NO];
                });
                
                it(@"should properly interpret file type", ^{
                    expect(testFile.fileType).to(equal(SDLFileTypeJSON));
                });
            });
            
            context(@"binary", ^{
                beforeEach(^{
                    NSBundle *testBundle = [NSBundle bundleForClass:[self class]];
                    testFileURL = [testBundle URLForResource:@"testImageTIFF" withExtension:@"tiff"];
                    testFileName = @"someTIFF";
                    
                    testFile = [[SDLFile alloc] initWithFileURL:testFileURL name:testFileName persistent:NO];
                });
                
                it(@"should properly interpret file type", ^{
                    expect(testFile.fileType).to(equal(SDLFileTypeBinary));
                });
            });

            // FIXME: - Add test cases for audio file types
            context(@"wav", ^{

            });

            context(@"mp3", ^{

            });

            context(@"aac", ^{

            });
        });
    });
});

QuickSpecEnd