xunlei_test.go 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package xunlei
  2. import (
  3. "path/filepath"
  4. "testing"
  5. "github.com/allanpk716/ChineseSubFinder/pkg"
  6. "github.com/allanpk716/ChineseSubFinder/pkg/logic/file_downloader"
  7. "github.com/allanpk716/ChineseSubFinder/pkg/cache_center"
  8. "github.com/allanpk716/ChineseSubFinder/pkg/log_helper"
  9. "github.com/allanpk716/ChineseSubFinder/pkg/random_auth_key"
  10. "github.com/allanpk716/ChineseSubFinder/pkg/unit_test_helper"
  11. )
  12. func TestGetList(t *testing.T) {
  13. //movie1 := "X:\\电影\\The Devil All the Time (2020)\\The Devil All the Time (2020) WEBDL-1080p.mkv"
  14. //movie1 := "X:\\电影\\龙猫 (1988)\\龙猫 (1988) 1080p DTS.mkv"
  15. //movie1 := "X:\\电影\\消失爱人 (2016)\\消失爱人 (2016) 720p AAC.rmvb"
  16. //movie1 := "X:\\电影\\Spiral From the Book of Saw (2021)\\Spiral From the Book of Saw (2021) WEBDL-1080p.mkv"
  17. //movie1 := "X:\\电影\\机动战士Z高达:星之继承者 (2005)\\机动战士Z高达:星之继承者 (2005) 1080p TrueHD.mkv"
  18. //movie1 := "X:\\连续剧\\The Bad Batch\\Season 1\\The Bad Batch - S01E01 - Aftermath WEBDL-1080p.mkv"
  19. //movie1 := "X:\\连续剧\\黄石 (2018)\\Season 4\\Yellowstone (2018) - S04E05 - Under a Blanket of Red WEBDL-2160p.mkv"
  20. //movie1 := "X:\\动漫\\碧蓝之海 (2018)\\Season 1\\碧蓝之海 - S01E01 - [UHA-WINGS][Grand Blue][01][BDRIP 1920x1080 x264 FLACx2].mkv"
  21. //movie1 := "X:\\连续剧\\瑞克和莫蒂 (2013)\\Season 5\\Rick and Morty - S05E01 - Mort Dinner Rick Andre WEBDL-1080p.mkv"
  22. //movie1 := "X:\\电影\\手机 (2003)\\手机 (2003) 720p Cooker.rmvb"
  23. rootDir := unit_test_helper.GetTestDataResourceRootPath([]string{"sub_spplier"}, 5, true)
  24. rootDir = filepath.Join(rootDir, "xunlei")
  25. gVideoFPath, err := unit_test_helper.GenerateXunleiVideoFile(rootDir)
  26. if err != nil {
  27. t.Fatal(err)
  28. }
  29. defInstance()
  30. outList, err := xunleiInstance.getSubListFromFile(gVideoFPath)
  31. if err != nil {
  32. t.Error(err)
  33. }
  34. println(outList)
  35. for i, sublist := range outList {
  36. println(i, sublist.Name, sublist.Ext, sublist.Language.String(), sublist.Score, len(sublist.Data))
  37. }
  38. alive, _ := xunleiInstance.CheckAlive()
  39. if alive == false {
  40. t.Fatal("CheckAlive == false")
  41. }
  42. }
  43. var xunleiInstance *Supplier
  44. func defInstance() {
  45. pkg.ReadCustomAuthFile(log_helper.GetLogger4Tester())
  46. authKey := random_auth_key.AuthKey{
  47. BaseKey: pkg.BaseKey(),
  48. AESKey16: pkg.AESKey16(),
  49. AESIv16: pkg.AESIv16(),
  50. }
  51. xunleiInstance = NewSupplier(file_downloader.NewFileDownloader(
  52. cache_center.NewCacheCenter("test", log_helper.GetLogger4Tester()), authKey))
  53. }