1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
class ImageMetaDataExtensionTest extends TestWithImage |
|
|
|
|
4
|
|
|
{ |
5
|
|
|
protected static $fixture_file = 'ss3gallery/tests/ss3gallery.yml'; |
6
|
|
|
|
7
|
|
|
public function testProcessExifData() |
8
|
|
|
{ |
9
|
|
|
$gi = new GalleryImage(); |
10
|
|
|
$gi->Title = 'Gallery Image Example'; |
|
|
|
|
11
|
|
|
$image = Image::get()->filter('Title', 'Test Image')->first(); |
12
|
|
|
$this->assertEquals('assets/TestImageSS3Gallery/test.jpg', $image->Filename); |
|
|
|
|
13
|
|
|
$gi->ImageID = $image->ID; |
|
|
|
|
14
|
|
|
//This will trigger processExifData method |
15
|
|
|
$gi->write(); |
16
|
|
|
|
17
|
|
|
$this->assertTrue($gi->ExifRead); |
|
|
|
|
18
|
|
|
$this->assertEquals('2.4', $gi->Aperture); |
|
|
|
|
19
|
|
|
$this->assertEquals('10/160', $gi->ShutterSpeed); |
|
|
|
|
20
|
|
|
$this->assertEquals(400, $gi->ISO); |
|
|
|
|
21
|
|
|
$this->assertEquals('2015:09:19 17:40:54', $gi->TakenAt); |
|
|
|
|
22
|
|
|
$this->assertEquals(Image::ORIENTATION_PORTRAIT, $gi->Orientation); |
|
|
|
|
23
|
|
|
$this->assertEquals(13.860741666667, $gi->Lat); |
|
|
|
|
24
|
|
|
$this->assertEquals(100.44168916667, $gi->Lon); |
|
|
|
|
25
|
|
|
} |
26
|
|
|
|
27
|
|
|
public function testRequireDefaultRecords() |
28
|
|
|
{ |
29
|
|
|
// Reset using SQL, otherwise SS triggers a re-read of the exif data |
30
|
|
|
DB::query('UPDATE "GalleryImage" SET "ExifRead" = 0'); |
31
|
|
|
DB::query('UPDATE "GalleryImage" SET "Lon" = 0'); |
32
|
|
|
DB::query('UPDATE "GalleryImage" SET "Lat" = 0'); |
33
|
|
|
|
34
|
|
|
$image = new GalleryImage(); |
35
|
|
|
$image->requireDefaultRecords(); |
36
|
|
|
|
37
|
|
|
// all images point to the same image file so can assert same details |
38
|
|
|
foreach (GalleryImage::get() as $gi) { |
39
|
|
|
$this->assertEquals(1, $gi->ExifRead); |
|
|
|
|
40
|
|
|
$this->assertEquals('2.4', $gi->Aperture); |
|
|
|
|
41
|
|
|
$this->assertEquals('10/160', $gi->ShutterSpeed); |
|
|
|
|
42
|
|
|
$this->assertEquals(400, $gi->ISO); |
|
|
|
|
43
|
|
|
$this->assertEquals('2015-09-19 17:40:54', $gi->TakenAt); |
|
|
|
|
44
|
|
|
$this->assertEquals(Image::ORIENTATION_PORTRAIT, $gi->Orientation); |
|
|
|
|
45
|
|
|
$this->assertEquals(13.860741666667, $gi->Lat); |
|
|
|
|
46
|
|
|
$this->assertEquals(100.44168916667, $gi->Lon); |
|
|
|
|
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
$this->assertEquals(4, GalleryImage::get()->count()); |
|
|
|
|
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
} |
53
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.