-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Techdebt/test refactor cruft removal (#250)
* Removed non english seed words -Refactor tests - Reset AnalyticsTests Signed-off-by: kcw-grunt <mrkerrywashington@icloud.com> * Rename Bitcoinletter to Litecoinletters -added tests testLitecoinSymbolConstants testAppExternalURLConstants testFirebaseAnalyticsConstants Signed-off-by: kcw-grunt <mrkerrywashington@icloud.com> --------- Signed-off-by: kcw-grunt <mrkerrywashington@icloud.com>
- Loading branch information
Showing
21 changed files
with
118 additions
and
8,317 deletions.
There are no files selected for viewing
72 changes: 0 additions & 72 deletions
72
app/src/androidTest/java/com/breadwallet/analytics/AnalyticsTests.java
This file was deleted.
Oops, something went wrong.
This file contains 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
81 changes: 81 additions & 0 deletions
81
app/src/androidTest/java/com/litewallet/analytics/ConstantsTests.java
This file contains 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,81 @@ | ||
package com.litewallet.analytics; | ||
import androidx.test.ext.junit.runners.AndroidJUnit4; | ||
import android.util.Log; | ||
import androidx.test.ext.junit.rules.ActivityScenarioRule; | ||
|
||
import com.breadwallet.presenter.activities.intro.IntroActivity; | ||
import com.breadwallet.tools.util.BRConstants; | ||
|
||
import org.junit.After; | ||
import org.junit.Assert; | ||
import org.junit.Before; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
import java.net.URI; | ||
|
||
@RunWith(AndroidJUnit4.class) | ||
public class ConstantsTests { | ||
public static final String TAG = ConstantsTests.class.getName(); | ||
@Rule | ||
public ActivityScenarioRule<IntroActivity> mActivityRule = new ActivityScenarioRule<>(IntroActivity.class); | ||
@Before | ||
public void setUp() { | ||
Log.e(TAG, "setUp: "); | ||
} | ||
|
||
@After | ||
public void tearDown() { | ||
} | ||
@Test | ||
public void testLitecoinSymbolConstants() { | ||
Assert.assertSame(BRConstants.litecoinLowercase,"ł"); | ||
Assert.assertSame(BRConstants.litecoinUppercase,"Ł"); | ||
} | ||
@Test | ||
public void testAppExternalURLConstants() { | ||
Assert.assertSame(BRConstants.TWITTER_LINK,"https://twitter.com/Litewallet_App"); | ||
Assert.assertSame(BRConstants.INSTAGRAM_LINK,"https://www.instagram.com/litewallet.app"); | ||
Assert.assertSame(BRConstants.WEB_LINK,"https://litewallet.io"); | ||
Assert.assertSame(BRConstants.TOS_LINK,"https://litewallet.io/privacy"); | ||
Assert.assertSame(BRConstants.CUSTOMER_SUPPORT_LINK,"https://support.litewallet.io/hc/en-us/requests/new"); | ||
Assert.assertSame(BRConstants.BITREFILL_AFFILIATE_LINK,"https://www.bitrefill.com/"); | ||
} | ||
@Test | ||
public void testFirebaseAnalyticsConstants() { | ||
Assert.assertSame(BRConstants._20191105_AL,"app_launched"); | ||
Assert.assertSame(BRConstants._20191105_VSC,"visit_send_controller"); | ||
Assert.assertSame(BRConstants._20202116_VRC,"visit_receive_controller"); | ||
Assert.assertSame(BRConstants._20191105_DSL,"did_send_ltc"); | ||
Assert.assertSame(BRConstants._20191105_DTBT,"did_tap_buy_tab"); | ||
Assert.assertSame(BRConstants._20200111_RNI,"rate_not_initialized"); | ||
Assert.assertSame(BRConstants._20200111_FNI,"feeperkb_not_initialized"); | ||
Assert.assertSame(BRConstants._20200111_TNI,"transaction_not_initialized"); | ||
Assert.assertSame(BRConstants._20200111_WNI,"wallet_not_initialized"); | ||
Assert.assertSame(BRConstants._20200111_PNI,"phrase_not_initialized"); | ||
Assert.assertSame(BRConstants._20200111_UTST,"unable_to_sign_transaction"); | ||
Assert.assertSame(BRConstants._20200112_ERR,"error"); | ||
Assert.assertSame(BRConstants._20200112_DSR,"did_start_resync"); | ||
Assert.assertSame(BRConstants._20200125_DSRR,"did_show_review_request"); | ||
Assert.assertSame(BRConstants._20201118_DTGS,"did_tap_get_support"); | ||
Assert.assertSame(BRConstants._20200217_DUWP,"did_unlock_with_pin"); | ||
Assert.assertSame(BRConstants._20200217_DUWB,"did_unlock_with_biometrics"); | ||
Assert.assertSame(BRConstants._20200223_DD,"did_donate"); | ||
Assert.assertSame(BRConstants._20200225_DCD,"did_cancel_donate"); | ||
Assert.assertSame(BRConstants._20200301_DUDFPK,"did_use_default_fee_per_kb"); | ||
Assert.assertSame(BRConstants._20201121_SIL,"started_IFPS_lookup"); | ||
Assert.assertSame(BRConstants._20201121_DRIA,"did_resolve_IPFS_address"); | ||
Assert.assertSame(BRConstants._20201121_FRIA,"failed_resolve_IPFS_address"); | ||
Assert.assertSame(BRConstants._20200207_DTHB,"did_tap_header_balance"); | ||
Assert.assertSame(BRConstants._20210427_HCIEEH,"heartbeat_check_if_event_even_happens"); | ||
Assert.assertSame(BRConstants._20220822_UTOU,"user_tapped_on_ud"); | ||
Assert.assertSame(BRConstants._20230131_NENR,"no_error_nominal_response"); | ||
Assert.assertSame(BRConstants._20230407_DCS,"did_complete_sync"); | ||
Assert.assertSame(BRConstants._20240123_RAGI,"registered_android_general_interest"); | ||
Assert.assertSame(BRConstants._20231225_UAP,"user_accepted_push"); | ||
Assert.assertSame(BRConstants._20240101_US,"user_signup"); | ||
Assert.assertSame(BRConstants._20241006_DRR,"did_request_rating"); | ||
Assert.assertSame(BRConstants._20241006_UCR,"user_completed_rating"); | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...m/breadwallet/database/DatabaseTests.java → ...om/litewallet/database/DatabaseTests.java
This file contains 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
2 changes: 1 addition & 1 deletion
2
...om/breadwallet/platform/KVStoreTests.java → ...com/litewallet/platform/KVStoreTests.java
This file contains 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 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...m/breadwallet/security/KeyStoreTests.java → ...om/litewallet/security/KeyStoreTests.java
This file contains 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
2 changes: 1 addition & 1 deletion
2
...readwallet/security/NewKeyStoreTests.java → ...litewallet/security/NewKeyStoreTests.java
This file contains 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
4 changes: 1 addition & 3 deletions
4
...a/com/breadwallet/wallet/WalletTests.java → ...va/com/litewallet/wallet/WalletTests.java
This file contains 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 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 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 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 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 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.