summaryrefslogtreecommitdiffstats
path: root/tests/src/com
Commit message (Collapse)AuthorAgeFilesLines
* tests: fix class nameDan Pasanen2019-10-252-2/+2
| | | | | | * fixes compile, we are not camera2 Change-Id: Ia7c463745e91ee02aa12f77c9e9d06b602692c4c
* Increased time to wait in all tests.priya2013-10-104-9/+21
| | | | | | For CameraLAtency.java got rid of the key event to get rid of geo tagging dialog on first launch of camera. That will be taken care of by pushing the shared_pref file. Change-Id: I76a824b5690d6913630560d58739e2df5cc1c259
* Adding back the camera tests to KLP-DEV after sorting them out in UB.Jason Noguchi2013-08-2614-0/+1596
| | | | Change-Id: I963aa71a31580fd42edc17a5f226b6d2c02b6f79
* Remove all tests from Camera2 until we have them sorted out.Sascha Haeberling2013-08-1212-1444/+0
| | | | Change-Id: I15107eac9acc37b09094585902fc24fe96ef8953
* Remove Camera tests from Gallery (breaks userdebugs builds)Sascha Haeberling2013-08-122-153/+0
| | | | Change-Id: I64d1fafb4ba7be73f16a53908507bc902168d1e7
* Add camera-related tests back.Sascha Haeberling2013-08-0914-0/+1597
| | | | Change-Id: I2213618fe3b2d4ba776c5f1f94aca330a785df1a
* This removes all non-Camera stuff from Camera2.Sascha Haeberling2013-08-0660-11040/+0
| | | | | | | Note: Camera2 is a clone of Gallery2 right now. Note 2: I will bring .mk files back later. Change-Id: Ida958654296f5ebaacb6bb0ff59d52a7c37ce6fc
* Clean up the test tags used by the continuous test service to determine whichJason Noguchi2013-08-0216-13/+32
| | | | | | | | tests to run on every dev build. Add SmallTest or MediumTest tags for unit tests that are currently being skipped and remove LargeTest tags from long running stress tests which are not necessary in this context. Change-Id: I2d3db31b0800dcbed42c881c5eaa589517fd9f87
* Added jpeg streaming classes.Ruben Brunk2013-07-114-0/+368
| | | | | | | | | - Provides streaming operations for decompressing/compressing JPEG files. - Allows pixel operations to be performed on large JPEG images without holding the entire bitmap in memory. Change-Id: I597ddf282b59d2ba6d6bca4722208121e3728f94
* Remove GL dependency on unused stencil buffers.George Mount2013-05-091-15/+0
| | | | | | Bug 8884435 Change-Id: I8e7f0563a4a901953e3e2b14e35457b4fefe2e34
* Speed improvements for ExifOutputStream.Ruben Brunk2013-04-022-0/+68
| | | | Change-Id: I7d3ee9c157aefe67734e7b49cfa7868254c134ef
* Remove ImageCache from PhotoProvider in favor of MediaCache.George Mount2013-03-291-9/+9
| | | | Change-Id: I4e75a094d1dc033ac892c2b95bdc6b6a4a165304
* Add initial implementation of MediaCache.George Mount2013-03-292-0/+398
| | | | Change-Id: I94d357bab0e57cc60b8be790d912ba036730298b
* Revert "New loading model"John Reck2013-03-213-13/+8
| | | | Change-Id: I5d3d4c7a4ca0d11de01278529e1413fc62e6b4ed
* Removing obsolete test.Jason Noguchi2013-03-201-116/+0
| | | | Change-Id: I061846d42d7cbe0a115724060a9600cef6e7433c
* Delete and recreate database on upgrade.George Mount2013-03-151-5/+33
| | | | Change-Id: I0125697dd673568ddfee7be8d7d0d693018b61d5
* Exif parser modifications.Ruben Brunk2013-03-1311-280/+1037
| | | | | Bug: 8018327 Change-Id: I66a2ec309f9807ac255bbf29d8f5f26de60e89b8
* Add delete cascade for Accounts.George Mount2013-03-122-2/+39
| | | | Change-Id: I962c7cb657643c3eddbbeb6a691b26de5553d4df
* Add batch operations to PhotoProviderGeorge Mount2013-03-071-0/+39
| | | | Change-Id: I36b2f0305e2ef7502df7b896c8baedc86519ac52
* Remove redundant Album NAME (replaced by TITLE)Mangesh Ghiware2013-03-072-11/+9
| | | | Change-Id: I0482f8b4bd85e07aefe4af02b1e8dab4702eb9f6
* Add inserts to PhotoProvider.George Mount2013-03-071-2/+16
| | | | Change-Id: Ie91df59975d185948c7c2fd96432d311847c3e00
* Add required fields to PhotoProvider.George Mount2013-03-063-58/+88
| | | | Change-Id: I1e830702412d4431ba3b01fe4945a4818385b6cd
* Update PhotoProvider and tests to allow tests to run against GalleryGoogle.apkGeorge Mount2013-03-044-228/+123
| | | | Change-Id: I6630e7a5ba0883b887915f63094885a2dc9f025c
* Add initial implementation of PhotosProvider.George Mount2013-02-264-0/+803
| | | | Change-Id: I98694cf54bd0fb549703a7184e1816e9590a05ff
* Scaling down the stress test defaults iteration counts to some base level.Jason Noguchi2013-02-202-3/+3
| | | | | | | | For true stress testing, need to pass arguments to scale these back up to 100. Also, temporarily removing SwitchPreview test which needs updating and currently would block other tests in stress suite. Change-Id: I9dd92e0090e2554aca5cb4b23fed2d33554c9c5e
* Remove more com.android.camera.RJohn Reck2013-02-152-2/+2
| | | | Change-Id: I410baaf4a3f0d824d44ea24435a1716cad3bb966
* Merging camera test with gallery test.Jason Noguchi2013-02-1415-0/+1723
| | | | Change-Id: I8ef94a67dddc67a66c1d42a1b91e0a0c380b2841
* New loading modelJohn Reck2013-01-163-8/+13
| | | | | | | | | | | | | Rename reload() to loadIfDirty() loadIfDirty is implemented by MediaSet and is final loadIfDirty is now blocking instead of async Subclasses must implement two protected methods, isDirtyLocked() and load() The change from async reload() to sync loadIfDirty() should be fine since all users of reload() were doing so from a background thread already, and the longest load() is PicasaAlbumSet which is still a fairly brisk 40ms or so Change-Id: If5cc596a1c13e52e5f4efff1a144bd086d37cfb7
* Fix slide show animation so that cross fades work.George Mount2013-01-091-3/+0
| | | | | | | | | | | Bug 7961297 Removed the "Additive" blending, which didn't do anything, even in OpenGL ES 1.1 implementation. Modified the texturing to change the color of the pixels based on the supplied alpha rather than modifying the alpha. This appears to match the implementation in the OpenGL ES 1.1 pipeline. Change-Id: I52491af1a8a2d727968e4e805bc4bc61647f5cf2
* Instantiate GLCanvas rather than reinitialize current GLCanvas.George Mount2013-01-083-30/+17
| | | | | | | GLCanvas was being used as a singleton when it really should allow separate instances for correctness. Change-Id: I650884e843a4a78997b70826f6012ae19b8df549
* Merge "ExifModifier" into gb-ub-photos-bryceAngus Kong2012-12-183-1/+175
|\
| * ExifModifierEarl Ou2012-11-303-1/+175
| | | | | | | | Change-Id: I001b24d8ba004a4080cd898f0d26d706b1839425
* | Move LightCycle to render directly to GLRootView.George Mount2012-12-171-0/+7
| | | | | | | | Change-Id: I298ef7127d86ca37067ffa953640aad1747961f9
* | GL packaging refactorJohn Reck2012-12-117-16/+39
| | | | | | | | Change-Id: I1d7a95c4f0b91a5ba59030d57cf6865c11b497aa
* | Add GLES20 canvas implementation.George Mount2012-12-053-14/+35
| | | | | | | | Change-Id: I5680909f31dc097599d0e063aa1f6daba834d3e2
* | Separate GL calls into GLCanvas in preparation for adding GLES2.George Mount2012-11-202-8/+69
|/ | | | Change-Id: I2756c14294a36af7905766ee650fa08fb95e9477
* Use getValueAt() to read different data in ExifTagEarl Ou2012-11-144-23/+14
| | | | Change-Id: I4d8a72523a6ad4ae34e173c4b845a462644e83c7
* Handle wrong thumbnail tag typeEarl Ou2012-11-072-45/+88
| | | | Change-Id: If41834f0aa86425a06aaede815f3e0c3cdd17fd9
* Handle undefined tags and ignore copyright tag in exif testEarl Ou2012-11-073-2/+147
| | | | Change-Id: I531518555257bdaefb79b681282c6aad07542b4b
* Handle invalid offset value in ExifParserEarl Ou2012-11-071-2/+2
| | | | Change-Id: I6d4a0edec361f8359535761d7f12ab9363ff1ad1
* ignore image with invalid thumbnail type in Exif testEarl Ou2012-11-071-3/+3
| | | | Change-Id: I6fc3a2dde4caf881b3b63aa95f1997ee9ccd4dbc
* Handle tag not found in ExifParserTestEarl Ou2012-11-071-0/+3
| | | | Change-Id: I892336ff3f73f91f5ac45ab9868f4ecfa61051ac
* fix OOM in exif testEarl Ou2012-11-071-0/+1
| | | | Change-Id: I41831e5831b2081f9b6bef6e57bd914faa41385b
* print image path when setup error in Exif testEarl Ou2012-10-311-9/+13
| | | | Change-Id: Ia4391571695ea518eac53f2b8c6b1a2acb5159c1
* am 0c7e8aac: Merge "Fix build." into gb-ub-photos-archesMichael Jurka2012-10-252-0/+4
|\ | | | | | | | | * commit '0c7e8aac441c18117b8daf3255d2658b83a37bde': Fix build.
| * Fix build.Angus Kong2012-10-262-0/+4
| | | | | | | | Change-Id: Ia7b581eba32f98d695117526d25876e7a8a398c0
* | Use List to store duplicated exif tagEarl Ou2012-10-243-17/+21
| | | | | | | | | | | | Use List so the number of tags can be calculated. Change-Id: I5dfb085fccadab4f0febf2944b64d4dfe9ecbd63
* | Use NO_VALUE in ground truth of exif test when no valid value from exiftoolEarl Ou2012-10-243-23/+17
| | | | | | | | Change-Id: Ia33edf0aba8562eb2dbd61b5753657f245bf7310
* | Handle duplicated tags in the Exif testEarl Ou2012-10-183-15/+27
| | | | | | | | Change-Id: If9bd9712de1eaa71c8e355c5268f9cc29247bd2e
* | Print image path for exception in Exif testEarl Ou2012-10-183-148/+168
| | | | | | | | Change-Id: Ib5b502ea91c9fb14dbd9e0ede664136943e50401