-
Notifications
You must be signed in to change notification settings - Fork 270
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
1 changed file
with
134 additions
and
0 deletions.
There are no files selected for viewing
134 changes: 134 additions & 0 deletions
134
TwitchDownloaderCore.Tests/ToolTests/TwitchRegexTests.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,134 @@ | ||
using TwitchDownloaderCore.Tools; | ||
|
||
namespace TwitchDownloaderCore.Tests.ToolTests | ||
{ | ||
// ReSharper disable StringLiteralTypo | ||
public class TwitchRegexTests | ||
{ | ||
[Theory] | ||
[InlineData("41546181")] // Oldest VODs - 8 | ||
[InlineData("982306410")] // Old VODs - 9 | ||
[InlineData("6834869128")] // Current VODs - 10 | ||
[InlineData("11987163407")] // Future VODs - 11 | ||
public void CorrectlyParsesVodId(string id) | ||
{ | ||
var match = TwitchRegex.MatchVideoId(id); | ||
|
||
Assert.NotNull(match); | ||
Assert.Equal(id, match.Value); | ||
} | ||
|
||
[Theory] | ||
[InlineData("https://www.twitch.tv/videos/41546181", "41546181")] // Oldest VODs - 8 | ||
[InlineData("https://www.twitch.tv/videos/982306410", "982306410")] // Old VODs - 9 | ||
[InlineData("https://www.twitch.tv/videos/6834869128", "6834869128")] // Current VODs - 10 | ||
[InlineData("https://www.twitch.tv/videos/11987163407", "11987163407")] // Future VODs - 11 | ||
[InlineData("https://www.twitch.tv/kitboga/video/2865132173", "2865132173")] // Alternate highlight URL | ||
[InlineData("https://www.twitch.tv/kitboga/v/2865132173", "2865132173")] // Alternate highlight URL | ||
[InlineData("https://www.twitch.tv/videos/4894164023/", "4894164023")] | ||
public void CorrectlyParsesVodLink(string link, string expectedId) | ||
{ | ||
var match = TwitchRegex.MatchVideoId(link); | ||
|
||
Assert.NotNull(match); | ||
Assert.Equal(expectedId, match.Value); | ||
} | ||
|
||
[Theory] | ||
[InlineData("SpineyPieTwitchRPGNurturing")] | ||
[InlineData("FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf")] | ||
public void CorrectlyParsesClipId(string id) | ||
{ | ||
var match = TwitchRegex.MatchClipId(id); | ||
|
||
Assert.NotNull(match); | ||
Assert.Equal(id, match.Value); | ||
} | ||
|
||
[Theory] | ||
[InlineData("https://www.twitch.tv/streamer8/clip/SpineyPieTwitchRPGNurturing", "SpineyPieTwitchRPGNurturing")] | ||
[InlineData("https://www.twitch.tv/streamer8/clip/FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf", "FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf")] | ||
[InlineData("https://www.twitch.tv/streamer8/clip/SpineyPieTwitchRPGNurturing?featured=false&filter=clips&range=all&sort=time", "SpineyPieTwitchRPGNurturing")] | ||
[InlineData("https://www.twitch.tv/streamer8/clip/FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf?featured=false&filter=clips&range=all&sort=time", "FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf")] | ||
[InlineData("https://clips.twitch.tv/SpineyPieTwitchRPGNurturing", "SpineyPieTwitchRPGNurturing")] | ||
[InlineData("https://clips.twitch.tv/FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf", "FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf")] | ||
[InlineData("https://clips.twitch.tv/SpineyPieTwitchRPGNurturing/", "SpineyPieTwitchRPGNurturing")] | ||
[InlineData("https://clips.twitch.tv/FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf/", "FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf")] | ||
public void CorrectlyParsesClipLink(string link, string expectedId) | ||
{ | ||
var match = TwitchRegex.MatchClipId(link); | ||
|
||
Assert.NotNull(match); | ||
Assert.Equal(expectedId, match.Value); | ||
} | ||
|
||
[Theory] | ||
[InlineData("41546181")] // Oldest VODs - 8 | ||
[InlineData("982306410")] // Old VODs - 9 | ||
[InlineData("6834869128")] // Current VODs - 10 | ||
[InlineData("11987163407")] // Future VODs - 11 | ||
[InlineData("SpineyPieTwitchRPGNurturing")] | ||
[InlineData("FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf")] | ||
public void CorrectlyParsesVodOrClipId(string id) | ||
{ | ||
var match = TwitchRegex.MatchVideoOrClipId(id); | ||
|
||
Assert.NotNull(match); | ||
Assert.Equal(id, match.Value); | ||
} | ||
|
||
[Theory] | ||
[InlineData("https://www.twitch.tv/videos/41546181", "41546181")] // Oldest VODs - 8 | ||
[InlineData("https://www.twitch.tv/videos/982306410", "982306410")] // Old VODs - 9 | ||
[InlineData("https://www.twitch.tv/videos/6834869128", "6834869128")] // Current VODs - 10 | ||
[InlineData("https://www.twitch.tv/videos/11987163407", "11987163407")] // Future VODs - 11 | ||
[InlineData("https://www.twitch.tv/kitboga/video/2865132173", "2865132173")] // Alternate highlight URL | ||
[InlineData("https://www.twitch.tv/kitboga/v/2865132173", "2865132173")] // Alternate VOD URL | ||
[InlineData("https://www.twitch.tv/videos/4894164023/", "4894164023")] | ||
[InlineData("https://www.twitch.tv/streamer8/clip/SpineyPieTwitchRPGNurturing", "SpineyPieTwitchRPGNurturing")] | ||
[InlineData("https://www.twitch.tv/streamer8/clip/FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf", "FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf")] | ||
[InlineData("https://www.twitch.tv/streamer8/clip/SpineyPieTwitchRPGNurturing?featured=false&filter=clips&range=all&sort=time", "SpineyPieTwitchRPGNurturing")] | ||
[InlineData("https://www.twitch.tv/streamer8/clip/FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf?featured=false&filter=clips&range=all&sort=time", "FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf")] | ||
[InlineData("https://clips.twitch.tv/SpineyPieTwitchRPGNurturing", "SpineyPieTwitchRPGNurturing")] | ||
[InlineData("https://clips.twitch.tv/FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf", "FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf")] | ||
[InlineData("https://clips.twitch.tv/SpineyPieTwitchRPGNurturing/", "SpineyPieTwitchRPGNurturing")] | ||
[InlineData("https://clips.twitch.tv/FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf/", "FuriousFlaccidTireArgieB8-NHbTiYQlzwHVvv_Vf")] | ||
public void CorrectlyParsesVodOrClipLink(string link, string expectedId) | ||
{ | ||
var match = TwitchRegex.MatchVideoOrClipId(link); | ||
|
||
Assert.NotNull(match); | ||
Assert.Equal(expectedId, match.Value); | ||
} | ||
|
||
[Fact] | ||
public void DoesNotParseGarbageVodId() | ||
{ | ||
const string GARBAGE = "SORRY FOR THE TRAFFIC NaM"; | ||
|
||
var match = TwitchRegex.MatchVideoId(GARBAGE); | ||
|
||
Assert.Null(match); | ||
} | ||
|
||
[Fact] | ||
public void DoesNotParseGarbageClipId() | ||
{ | ||
const string GARBAGE = "SORRY FOR THE TRAFFIC NaM"; | ||
|
||
var match = TwitchRegex.MatchClipId(GARBAGE); | ||
|
||
Assert.Null(match); | ||
} | ||
|
||
[Fact] | ||
public void DoesNotParseGarbageVodOrClipId() | ||
{ | ||
const string GARBAGE = "SORRY FOR THE TRAFFIC NaM"; | ||
|
||
var match = TwitchRegex.MatchVideoOrClipId(GARBAGE); | ||
|
||
Assert.Null(match); | ||
} | ||
} | ||
} |