-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
90 additions
and
5 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
...ithub/Manual/ManualRunnerTests.RunAsync_ValidMigrations_BackupSelected.Linux.verified.txt
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,27 @@ | ||
Do you want to continue as test? [y/n] (y): y | ||
Logged in as test | ||
Do you want to start a migration? [y/n] (n): n | ||
Found 3 migrations: | ||
- 1 Exported 01.01.2020 00:00:00 (10d) | ||
- 2 Exported 06.01.2020 00:00:00 (5d) | ||
- 3 Exported 10.01.2020 00:00:00 (1d) | ||
Select migrations to download? | ||
|
||
> [ ] 2 Exported 06.01.2020 00:00:00 (5d) | ||
[ ] 3 Exported 10.01.2020 00:00:00 (1d) | ||
|
||
(Press <space> to toggle a migration, <enter> to accept)Select migrations to download? | ||
|
||
[ ] 2 Exported 06.01.2020 00:00:00 (5d) | ||
> [ ] 3 Exported 10.01.2020 00:00:00 (1d) | ||
|
||
(Press <space> to toggle a migration, <enter> to accept)Select migrations to download? | ||
|
||
[ ] 2 Exported 06.01.2020 00:00:00 (5d) | ||
> [X] 3 Exported 10.01.2020 00:00:00 (1d) | ||
|
||
(Press <space> to toggle a migration, <enter> to accept)Where do you want to save the migration files? /test1 | ||
The destination directory does not exist. Please enter a valid directory. /test2 | ||
Downloading migration 3 to /test2... | ||
Downloaded migration 3 (/test2/test3.zip) | ||
Fetch migration status again? [y/n] (y): n |
27 changes: 27 additions & 0 deletions
27
...ithub/Manual/ManualRunnerTests.RunAsync_ValidMigrations_BackupSelected.MacOS.verified.txt
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,27 @@ | ||
Do you want to continue as test? [y/n] (y): y | ||
Logged in as test | ||
Do you want to start a migration? [y/n] (n): n | ||
Found 3 migrations: | ||
- 1 Exported 01.01.2020 00:00:00 (10d) | ||
- 2 Exported 06.01.2020 00:00:00 (5d) | ||
- 3 Exported 10.01.2020 00:00:00 (1d) | ||
Select migrations to download? | ||
|
||
> [ ] 2 Exported 06.01.2020 00:00:00 (5d) | ||
[ ] 3 Exported 10.01.2020 00:00:00 (1d) | ||
|
||
(Press <space> to toggle a migration, <enter> to accept)Select migrations to download? | ||
|
||
[ ] 2 Exported 06.01.2020 00:00:00 (5d) | ||
> [ ] 3 Exported 10.01.2020 00:00:00 (1d) | ||
|
||
(Press <space> to toggle a migration, <enter> to accept)Select migrations to download? | ||
|
||
[ ] 2 Exported 06.01.2020 00:00:00 (5d) | ||
> [X] 3 Exported 10.01.2020 00:00:00 (1d) | ||
|
||
(Press <space> to toggle a migration, <enter> to accept)Where do you want to save the migration files? /test1 | ||
The destination directory does not exist. Please enter a valid directory. /test2 | ||
Downloading migration 3 to /test2... | ||
Downloaded migration 3 (/test2/test3.zip) | ||
Fetch migration status again? [y/n] (y): n |
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace GithubBackup.TestUtils.Env; | ||
|
||
// ReSharper disable once InconsistentNaming | ||
public static class OS | ||
{ | ||
public static string Description() | ||
{ | ||
if (OperatingSystem.IsWindows()) | ||
return "windows"; | ||
if (OperatingSystem.IsLinux()) | ||
return "linux"; | ||
if (OperatingSystem.IsMacOS()) | ||
return "macos"; | ||
|
||
throw new NotSupportedException("Operating system not supported"); | ||
} | ||
} |
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 |
---|---|---|
|
@@ -16,4 +16,5 @@ | |
<ProjectReference Include="..\GithubBackup.Core\GithubBackup.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
|
||
</Project> |