-
Notifications
You must be signed in to change notification settings - Fork 3.6k
[camera_android_camerax] Retrieve lens direction from CameraX directly #10847
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
2a96bf2
finish replacement + start fixing tests
camsim99 990a061
fix tests
camsim99 804b7bc
Merge remote-tracking branch 'upstream/main' into camx_lensFacing
camsim99 1895446
bump
camsim99 09a0241
remove unecessary line
camsim99 6b41c4b
personal nits <3
camsim99 b5a65d3
lint + format
camsim99 1e9b8f7
format
camsim99 9c8a2ad
Update packages/camera/camera_android_camerax/CHANGELOG.md
camsim99 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,15 +9,18 @@ | |
| import static org.mockito.Mockito.when; | ||
|
|
||
| import androidx.camera.core.CameraInfo; | ||
| import androidx.camera.core.CameraSelector; | ||
| import androidx.camera.core.CameraState; | ||
| import androidx.camera.core.ExposureState; | ||
| import androidx.camera.core.ZoomState; | ||
| import androidx.lifecycle.LiveData; | ||
| import java.util.Arrays; | ||
| import java.util.List; | ||
| import org.junit.Test; | ||
|
|
||
| public class CameraInfoTest { | ||
| @Test | ||
| public void getSensorRotationDegrees_makesCallToRetrieveSensorRotationDegrees() { | ||
| public void sensorRotationDegrees_makesCallToRetrieveSensorRotationDegrees() { | ||
| final PigeonApiCameraInfo api = new TestProxyApiRegistrar().getPigeonApiCameraInfo(); | ||
|
|
||
| final CameraInfo instance = mock(CameraInfo.class); | ||
|
|
@@ -27,6 +30,41 @@ public void getSensorRotationDegrees_makesCallToRetrieveSensorRotationDegrees() | |
| assertEquals(value, api.sensorRotationDegrees(instance)); | ||
| } | ||
|
|
||
| @Test | ||
| public void lensFacing_makesCallToRetrieveLensFacing() { | ||
| final PigeonApiCameraInfo api = new TestProxyApiRegistrar().getPigeonApiCameraInfo(); | ||
|
|
||
| final CameraInfo instance = mock(CameraInfo.class); | ||
| List<Integer> testedLensFacingValues = | ||
| Arrays.asList( | ||
| CameraSelector.LENS_FACING_BACK, | ||
| CameraSelector.LENS_FACING_FRONT, | ||
| CameraSelector.LENS_FACING_EXTERNAL, | ||
| CameraSelector.LENS_FACING_UNKNOWN); | ||
|
|
||
| for (int testedLensFacingValue : testedLensFacingValues) { | ||
| when(instance.getLensFacing()).thenReturn(testedLensFacingValue); | ||
|
|
||
| LensFacing expected; | ||
| switch (testedLensFacingValue) { | ||
| case CameraSelector.LENS_FACING_BACK: | ||
| expected = LensFacing.BACK; | ||
| break; | ||
| case CameraSelector.LENS_FACING_FRONT: | ||
| expected = LensFacing.FRONT; | ||
| break; | ||
| case CameraSelector.LENS_FACING_EXTERNAL: | ||
| expected = LensFacing.EXTERNAL; | ||
| break; | ||
| default: | ||
| expected = LensFacing.UNKNOWN; | ||
| break; | ||
| } | ||
|
Comment on lines
+48
to
+62
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to the implementation in LensFacing expected =
switch (testedLensFacingValue) {
case CameraSelector.LENS_FACING_BACK -> LensFacing.BACK;
case CameraSelector.LENS_FACING_FRONT -> LensFacing.FRONT;
case CameraSelector.LENS_FACING_EXTERNAL -> LensFacing.EXTERNAL;
default -> LensFacing.UNKNOWN;
}; |
||
|
|
||
| assertEquals(expected, api.lensFacing(instance)); | ||
| } | ||
| } | ||
|
|
||
| @SuppressWarnings("unchecked") | ||
| @Test | ||
| public void getCameraState_makesCallToRetrieveLiveCameraState() { | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For improved conciseness and readability, you can use a Java switch expression here, as the project's Java version supports it. This modern language feature can make the code more streamlined.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indifferent. Also I think our formatter is too outdated for this, so this would require an update to that tool. Tried this locally and I get errors.