feat: update model

This commit is contained in:
Rogee
2024-12-04 15:37:00 +08:00
parent cdf8acf78f
commit 774f8644ab
5 changed files with 5 additions and 16 deletions

View File

@@ -118,42 +118,36 @@ func TestService_List(t *testing.T) {
{
MediaID: 1,
Type: pg.MediaTypeVideo,
Source: lo.ToPtr("http://www.baidu.com"),
Size: 100,
Publish: true,
},
{
MediaID: 1,
Type: pg.MediaTypeAudio,
Source: lo.ToPtr("http://www.baidu.com"),
Size: 100,
Publish: true,
},
{
MediaID: 2,
Type: pg.MediaTypeVideo,
Source: lo.ToPtr("http://www.baidu.com"),
Size: 100,
Publish: true,
},
{
MediaID: 2,
Type: pg.MediaTypeAudio,
Source: lo.ToPtr("http://www.baidu.com"),
Size: 100,
Publish: true,
},
{
MediaID: 3,
Type: pg.MediaTypeVideo,
Source: lo.ToPtr("http://www.baidu.com"),
Size: 100,
Publish: true,
},
{
MediaID: 3,
Type: pg.MediaTypeAudio,
Source: lo.ToPtr("http://www.baidu.com"),
Size: 100,
Publish: true,
},
@@ -206,10 +200,6 @@ func TestService_List1(t *testing.T) {
t.Log(stmt.DebugSql())
type list struct {
Media model.Medias `alias:"ListItem.*"`
}
var dest []ListItem
err = stmt.QueryContext(context.TODO(), db, &dest)
So(err, ShouldBeNil)
@@ -234,14 +224,12 @@ func TestService_DecorateListResources(t *testing.T) {
{
MediaID: 1,
Type: pg.MediaTypeVideo,
Source: lo.ToPtr("http://www.baidu.com"),
Size: 100,
Publish: true,
},
{
MediaID: 2,
Type: pg.MediaTypeAudio,
Source: lo.ToPtr("http://www.baidu.com"),
Size: 100,
Publish: true,
},

View File

@@ -79,6 +79,8 @@ func (t *DiscoverMediasTestSuite) Test_parseM3u8File() {
playlist, err := t.Svc.parseM3u8File(file)
So(err, ShouldBeNil)
t.T().Logf("ListType: %+v", playlist)
t.T().Logf("Live: %+v", playlist.IsLive())
t.T().Logf("IsMaster: %+v", playlist.IsMaster())
t.T().Logf("Size: %+v", playlist.Segments())
})
}