-
Notifications
You must be signed in to change notification settings - Fork 1
Added unit tests #7
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
21 commits
Select commit
Hold shift + click to select a range
3cda26d
unit testing
mrajatttt 07c6f22
Create ci.yml
mrajatttt b3e6347
Update ci.yml
mrajatttt 044941f
Update ci.yml
mrajatttt d46fdcc
Update ci.yml
mrajatttt 874e819
Update ci.yml
mrajatttt df6478e
Update ci.yml
mrajatttt f191c83
Update ci.yml
mrajatttt 58a5257
Added Unit tests
mrajatttt 6c99c51
Update ci.yml
mrajatttt 80c54ae
Update ci.yml
mrajatttt b9d7fb3
Update ci.yml
mrajatttt 9915e5c
Update ci.yml
mrajatttt 41a35d8
Update ci.yml
mrajatttt fb55176
Update ci.yml
mrajatttt bcc9cbc
Update ci.yml
mrajatttt d9df904
Update ci.yml
mrajatttt ee047e8
Update ci.yml
mrajatttt 2c02563
Update ci.yml
mrajatttt ea7cfe0
Added Unit tests
mrajatttt e6003f2
Merge remote-tracking branch 'origin/rajatttt/project-setup' into raj…
mrajatttt 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,136 @@ | ||
name: Android CI | ||
|
||
on: | ||
pull_request: | ||
branches: [ main ] | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
|
||
- name: Set up Android SDK | ||
uses: android-actions/setup-android@v2 | ||
with: | ||
api-level: 30 | ||
build-tools: 30.0.3 | ||
|
||
- name: Cache Gradle | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
|
||
- name: Build with Gradle (no tests) | ||
run: ./gradlew assemble | ||
|
||
- name: Save Build Artifacts | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: app-build | ||
path: app/build/outputs/apk/ | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
|
||
- name: Set up Android SDK | ||
uses: android-actions/setup-android@v2 | ||
with: | ||
api-level: 30 | ||
build-tools: 30.0.3 | ||
|
||
- name: Cache Gradle | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
|
||
- name: Run Unit Tests and Capture Results | ||
id: run_tests | ||
run: | | ||
./gradlew test | tee test-results.txt | ||
TEST_RESULTS=$(grep -A 7 "Test Summary" test-results.txt | tail -n +2 | sed 's/\x1B\[[0-9;]*[JKmsu]//g' | tr -d '[:space:]') | ||
echo "$TEST_RESULTS" > test-summary.txt | ||
|
||
# - name: Format Test Results for Two-Row Markdown Table with Emojis | ||
# run: | | ||
# echo "### Test Results" > formatted-summary.txt | ||
# echo "" >> formatted-summary.txt | ||
# echo "| Total Tests | Passed | Failed | Skipped | Result |" >> formatted-summary.txt | ||
# echo "|-------------|--------|--------|---------|--------|" >> formatted-summary.txt | ||
|
||
# echo "Raw Test Summary Content:" | ||
# cat test-summary.txt | ||
|
||
# # Extracting values using awk | ||
# TOTAL=$(echo "$TEST_RESULTS" | awk -F'[: ]+' '/TotalTests/ {print $2}') | ||
# PASSED=$(echo "$TEST_RESULTS" | awk -F'[: ]+' '/Passed/ {print $2}') | ||
# FAILED=$(echo "$TEST_RESULTS" | awk -F'[: ]+' '/Failed/ {print $2}') | ||
# SKIPPED=$(echo "$TEST_RESULTS" | awk -F'[: ]+' '/Skipped/ {print $2}') | ||
# RESULT=$(echo "$TEST_RESULTS" | awk -F'[: ]+' '/Result/ {print $2}') | ||
|
||
# # Detailed debugging | ||
# echo "Debug: Extracted Values:" | ||
# echo " TOTAL: '$TOTAL'" | ||
# echo " PASSED: '$PASSED'" | ||
# echo " FAILED: '$FAILED'" | ||
# echo " SKIPPED: '$SKIPPED'" | ||
# echo " RESULT (Raw): '$RESULT'" | ||
|
||
# if [[ "$RESULT" == "SUCCESS" ]]; then | ||
# EMOJI="✅" | ||
# elif [[ "$RESULT" == "FAILURE" ]]; then | ||
# EMOJI="❌" | ||
# else | ||
# EMOJI="⚠️" | ||
# fi | ||
|
||
# echo "Debug: Final RESULT after processing: '$RESULT $EMOJI'" | ||
|
||
# echo "| $TOTAL | $PASSED | $FAILED | $SKIPPED | $RESULT $EMOJI |" >> formatted-summary.txt | ||
|
||
# # Show the final output for debugging | ||
# echo "Final formatted-summary.txt content:" | ||
# cat formatted-summary.txt | ||
|
||
# - name: Comment on PR | ||
# if: github.event_name == 'pull_request' | ||
# uses: actions/github-script@v6 | ||
# with: | ||
# script: | | ||
# const fs = require('fs'); | ||
# const testResults = fs.readFileSync('formatted-summary.txt', 'utf8'); | ||
# github.rest.issues.createComment({ | ||
# issue_number: context.issue.number, | ||
# owner: context.repo.owner, | ||
# repo: context.repo.repo, | ||
# body: testResults | ||
# }); |
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
84 changes: 84 additions & 0 deletions
84
chat-sdk/src/test/java/com/amazon/connect/chat/sdk/ChatSessionImplTest.kt
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 |
---|---|---|
@@ -0,0 +1,84 @@ | ||
package com.amazon.connect.chat.sdk | ||
|
||
import com.amazon.connect.chat.sdk.model.ChatDetails | ||
import com.amazon.connect.chat.sdk.model.GlobalConfig | ||
import com.amazon.connect.chat.sdk.repository.ChatService | ||
import com.amazonaws.regions.Regions | ||
import junit.framework.TestCase.assertTrue | ||
import kotlinx.coroutines.ExperimentalCoroutinesApi | ||
import kotlinx.coroutines.test.runTest | ||
import org.junit.Before | ||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
import org.mockito.Mock | ||
import org.mockito.Mockito.* | ||
import org.mockito.MockitoAnnotations | ||
import org.mockito.kotlin.verify | ||
import org.robolectric.RobolectricTestRunner | ||
|
||
|
||
@ExperimentalCoroutinesApi | ||
@RunWith(RobolectricTestRunner::class) | ||
class ChatSessionImplTest { | ||
|
||
@Mock | ||
private lateinit var chatService: ChatService | ||
|
||
private lateinit var chatSession: ChatSession | ||
|
||
@Before | ||
fun setUp() { | ||
MockitoAnnotations.openMocks(this) | ||
chatSession = ChatSessionImpl(chatService) | ||
} | ||
|
||
@Test | ||
fun test_configure(){ | ||
val config = GlobalConfig(region = Regions.US_WEST_2) | ||
chatSession.configure(config) | ||
verify(chatService).configure(config) | ||
} | ||
|
||
@Test | ||
fun test_connect_success() = runTest { | ||
val chatDetails = ChatDetails(participantToken = "participant-token") | ||
`when`(chatService.createChatSession(chatDetails)).thenReturn(Result.success(true)) | ||
|
||
val result = chatSession.connect(chatDetails) | ||
|
||
assertTrue(result.isSuccess) | ||
verify(chatService).createChatSession(chatDetails) | ||
} | ||
|
||
@Test | ||
fun test_connect_failure() = runTest { | ||
val chatDetails = ChatDetails(participantToken = "invalid token") | ||
`when`(chatService.createChatSession(chatDetails)).thenThrow(RuntimeException("Network error")) | ||
|
||
val result = chatSession.connect(chatDetails) | ||
|
||
assertTrue(result.isFailure) | ||
verify(chatService).createChatSession(chatDetails) | ||
} | ||
|
||
@Test | ||
fun test_disconnect_success() = runTest { | ||
`when`(chatService.disconnectChatSession()).thenReturn(Result.success(true)) | ||
|
||
val result = chatSession.disconnect() | ||
|
||
assertTrue(result.isSuccess) | ||
verify(chatService).disconnectChatSession() | ||
} | ||
|
||
@Test | ||
fun test_disconnect_failure() = runTest { | ||
`when`(chatService.disconnectChatSession()).thenThrow(RuntimeException("Network error")) | ||
|
||
val result = chatSession.disconnect() | ||
|
||
assertTrue(result.isFailure) | ||
verify(chatService).disconnectChatSession() | ||
} | ||
|
||
} |
17 changes: 0 additions & 17 deletions
17
chat-sdk/src/test/java/com/amazon/connect/chat/sdk/ExampleUnitTest.kt
This file was deleted.
Oops, something went wrong.
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.
Is this just an example output? Do we need this?
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.
I added this to comment test results in PR but it wasnt working properly. So i will spend time on it later.