Merge pull request #1135 from kekkyojin/totvstring-unittest

Add unit test for LbryUri.toTvString
This commit is contained in:
Akinwale Ariwodola 2021-02-22 20:07:55 +01:00 committed by GitHub
commit 2761857fe8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -113,6 +113,19 @@ public class LbryUriTest {
assertEquals(expectedForChannel, obtained);
}
@Test
public void lbryToTvString() {
LbryUri obtained = new LbryUri();
try {
obtained = LbryUri.parse("lbry://@lbry#3f/lbryturns4#6",false);
} catch (LbryUriException e) {
e.printStackTrace();
}
assertEquals("https://lbry.tv/@lbry:3f/lbryturns4:6", obtained.toTvString());
}
@NotNull
private LbryUri sinthesizeExpected() {
LbryUri expectedForChannel = new LbryUri();