This repository has been archived by the owner on May 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 505
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into LocationAccuracyHandling
- Loading branch information
Showing
54 changed files
with
1,042 additions
and
207 deletions.
There are no files selected for viewing
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
146 changes: 146 additions & 0 deletions
146
DeviceTests/DeviceTests.Shared/VersionTracking_Tests.cs
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,146 @@ | ||
using System; | ||
using System.Diagnostics; | ||
using Xamarin.Essentials; | ||
using Xunit; | ||
using Xunit.Abstractions; | ||
|
||
namespace DeviceTests | ||
{ | ||
public class VersionTracking_Tests | ||
{ | ||
/// <summary> | ||
/// We cannot mock the app version but it should be constant value | ||
/// </summary> | ||
const string currentVersion = "1.0.1.0"; | ||
const string currentBuild = "1"; | ||
|
||
const string versionTrailKey = "VersionTracking.Trail"; | ||
const string versionsKey = "VersionTracking.Versions"; | ||
const string buildsKey = "VersionTracking.Builds"; | ||
static readonly string sharedName = Preferences.GetPrivatePreferencesSharedName("versiontracking"); | ||
|
||
readonly ITestOutputHelper output; | ||
|
||
public VersionTracking_Tests(ITestOutputHelper output) | ||
{ | ||
this.output = output; | ||
} | ||
|
||
[Fact] | ||
public void First_Launch_Ever() | ||
{ | ||
VersionTracking.Track(); | ||
Preferences.Clear(sharedName); | ||
|
||
VersionTracking.InitVersionTracking(); | ||
|
||
Assert.Equal(currentVersion, VersionTracking.CurrentVersion); | ||
Assert.True(VersionTracking.IsFirstLaunchEver); | ||
Assert.True(VersionTracking.IsFirstLaunchForCurrentVersion); | ||
Assert.True(VersionTracking.IsFirstLaunchForCurrentBuild); | ||
} | ||
|
||
[Fact] | ||
public void First_Launch_For_Version() | ||
{ | ||
VersionTracking.Track(); | ||
Preferences.Set(versionsKey, string.Join("|", new string[] { "0.8.0", "0.9.0", "1.0.0" }), sharedName); | ||
Preferences.Set(buildsKey, string.Join("|", new string[] { currentBuild }), sharedName); | ||
|
||
VersionTracking.InitVersionTracking(); | ||
|
||
Assert.Equal(currentVersion, VersionTracking.CurrentVersion); | ||
Assert.Equal("1.0.0", VersionTracking.PreviousVersion); | ||
Assert.Equal("0.8.0", VersionTracking.FirstInstalledVersion); | ||
Assert.False(VersionTracking.IsFirstLaunchEver); | ||
Assert.True(VersionTracking.IsFirstLaunchForCurrentVersion); | ||
Assert.False(VersionTracking.IsFirstLaunchForCurrentBuild); | ||
|
||
VersionTracking.InitVersionTracking(); | ||
|
||
Assert.Equal(currentVersion, VersionTracking.CurrentVersion); | ||
Assert.Equal("1.0.0", VersionTracking.PreviousVersion); | ||
Assert.Equal("0.8.0", VersionTracking.FirstInstalledVersion); | ||
Assert.False(VersionTracking.IsFirstLaunchEver); | ||
Assert.False(VersionTracking.IsFirstLaunchForCurrentVersion); | ||
Assert.False(VersionTracking.IsFirstLaunchForCurrentBuild); | ||
} | ||
|
||
[Fact] | ||
public void First_Launch_For_Build() | ||
{ | ||
VersionTracking.Track(); | ||
Preferences.Set(versionsKey, string.Join("|", new string[] { currentVersion }), sharedName); | ||
Preferences.Set(buildsKey, string.Join("|", new string[] { "10", "20" }), sharedName); | ||
|
||
VersionTracking.InitVersionTracking(); | ||
|
||
Assert.Equal(currentVersion, VersionTracking.CurrentVersion); | ||
Assert.Equal("20", VersionTracking.PreviousBuild); | ||
Assert.Equal("10", VersionTracking.FirstInstalledBuild); | ||
Assert.False(VersionTracking.IsFirstLaunchEver); | ||
Assert.False(VersionTracking.IsFirstLaunchForCurrentVersion); | ||
Assert.True(VersionTracking.IsFirstLaunchForCurrentBuild); | ||
|
||
VersionTracking.InitVersionTracking(); | ||
|
||
Assert.Equal(currentVersion, VersionTracking.CurrentVersion); | ||
Assert.Equal("20", VersionTracking.PreviousBuild); | ||
Assert.Equal("10", VersionTracking.FirstInstalledBuild); | ||
Assert.False(VersionTracking.IsFirstLaunchEver); | ||
Assert.False(VersionTracking.IsFirstLaunchForCurrentVersion); | ||
Assert.False(VersionTracking.IsFirstLaunchForCurrentBuild); | ||
} | ||
|
||
[Fact] | ||
public void First_Launch_After_Downgrade() | ||
{ | ||
VersionTracking.Track(); | ||
Preferences.Set(versionsKey, string.Join("|", new string[] { currentVersion, "1.0.2", "1.0.3" }), sharedName); | ||
|
||
VersionTracking.InitVersionTracking(); | ||
output.WriteLine(VersionTracking.GetStatus()); | ||
|
||
Assert.Equal(currentVersion, VersionTracking.CurrentVersion); | ||
Assert.Equal("1.0.3", VersionTracking.PreviousVersion); | ||
Assert.Equal("1.0.2", VersionTracking.FirstInstalledVersion); | ||
Assert.False(VersionTracking.IsFirstLaunchEver); | ||
Assert.True(VersionTracking.IsFirstLaunchForCurrentVersion); | ||
|
||
VersionTracking.InitVersionTracking(); | ||
|
||
Assert.Equal(currentVersion, VersionTracking.CurrentVersion); | ||
Assert.Equal("1.0.3", VersionTracking.PreviousVersion); | ||
Assert.Equal("1.0.2", VersionTracking.FirstInstalledVersion); | ||
Assert.False(VersionTracking.IsFirstLaunchEver); | ||
Assert.False(VersionTracking.IsFirstLaunchForCurrentVersion); | ||
} | ||
|
||
[Fact] | ||
public void First_Launch_After_Build_Downgrade() | ||
{ | ||
VersionTracking.Track(); | ||
Preferences.Set(versionsKey, string.Join("|", new string[] { currentVersion }), sharedName); | ||
Preferences.Set(buildsKey, string.Join("|", new string[] { currentBuild, "10", "20" }), sharedName); | ||
|
||
VersionTracking.InitVersionTracking(); | ||
output.WriteLine(VersionTracking.GetStatus()); | ||
|
||
Assert.Equal(currentBuild, VersionTracking.CurrentBuild); | ||
Assert.Equal("20", VersionTracking.PreviousBuild); | ||
Assert.Equal("10", VersionTracking.FirstInstalledBuild); | ||
Assert.False(VersionTracking.IsFirstLaunchEver); | ||
Assert.False(VersionTracking.IsFirstLaunchForCurrentVersion); | ||
Assert.True(VersionTracking.IsFirstLaunchForCurrentBuild); | ||
|
||
VersionTracking.InitVersionTracking(); | ||
|
||
Assert.Equal(currentBuild, VersionTracking.CurrentBuild); | ||
Assert.Equal("20", VersionTracking.PreviousBuild); | ||
Assert.Equal("10", VersionTracking.FirstInstalledBuild); | ||
Assert.False(VersionTracking.IsFirstLaunchEver); | ||
Assert.False(VersionTracking.IsFirstLaunchForCurrentVersion); | ||
Assert.False(VersionTracking.IsFirstLaunchForCurrentBuild); | ||
} | ||
} | ||
} |
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.