Lines Matching refs:url

51     void TestSinglePlayerFinishedAutomatically(std::string url)
54 ASSERT_EQ(0, player->SetSource(TestSource(url)));
62 void TestSinglePlayerFinishedManually(std::string url)
65 ASSERT_EQ(0, player->SetSource(TestSource(url)));
78 void TestSinglePlayerGetDuration(std::string url, int32_t expectDuration)
81 ASSERT_EQ(0, player->SetSource(TestSource(url)));
91 void TestSinglePlayerGetCurrentTime(std::string url)
95 ASSERT_EQ(0, player->SetSource(TestSource(url)));
106 void TestSinglePlayerSeek(std::string url)
111 ASSERT_EQ(0, player->SetSource(TestSource(url)));
123 void TestSinglePlayerSeekPause(std::string url)
128 ASSERT_EQ(0, player->SetSource(TestSource(url)));
141 void TestSinglePlayerPauseSeek(std::string url)
146 ASSERT_EQ(0, player->SetSource(TestSource(url)));
159 void TestSinglePlayerSingleLoop(std::string url)
162 ASSERT_EQ(0, player->SetSource(TestSource(url)));
170 void TestSinglePlayerHttp(std::string url)
173 ASSERT_EQ(0, player->SetSource(TestSource(url)));
182 void TestSinglePlayerHls(std::string url)
185 ASSERT_EQ(0, player->SetSource(TestSource(url)));
192 void TestSinglePlayerSeekNearEnd(std::string url, int32_t expectDuration)
195 ASSERT_EQ(0, player->SetSource(TestSource(url)));
212 void TestSinglePlayerFinishPlayAgain(std::string url)
215 ASSERT_EQ(0, player->SetSource(TestSource(url)));
236 for (auto url : vecSource)
238 TestSinglePlayerFinishedAutomatically(url);
251 for (auto url : vecSource)
253 TestSinglePlayerFinishedManually(url);
262 for (auto url : vecSource)
264 TestSinglePlayerGetDuration(url, 30000); // 30000 MS
276 for (auto url : vecSource)
278 TestSinglePlayerGetCurrentTime(url);
288 for (auto url : vecSource)
290 TestSinglePlayerSeek(url);
300 for (auto url : vecSource)
302 TestSinglePlayerSeekPause(url);
312 for (auto url : vecSource)
314 TestSinglePlayerPauseSeek(url);
327 for (auto url : vecSource)
329 TestSinglePlayerSingleLoop(url);
338 for (auto url : vecSource)
340 TestSinglePlayerHttp(url);
348 for (auto url : vecSource)
350 TestSinglePlayerHls(url);
359 for (auto url : vecSource)
361 TestSinglePlayerSeekNearEnd(url, 30000); // 30000 MS
374 for (auto url : vecSource)
376 TestSinglePlayerFinishPlayAgain(url);