adam.bergkvist@ericsson.com | 335aa7a | 2013-03-04 10:07:39 +0000 | [diff] [blame] | 1 | Test adding and removing tracks. |
| 2 | |
| 3 | On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". |
| 4 | |
| 5 | |
commit-queue@webkit.org | 89d806e | 2014-04-24 06:37:51 +0000 | [diff] [blame] | 6 | PASS stream1.active is true |
adam.bergkvist@ericsson.com | 335aa7a | 2013-03-04 10:07:39 +0000 | [diff] [blame] | 7 | PASS stream1.getAudioTracks().length is 1 |
| 8 | PASS stream1.getVideoTracks().length is 1 |
commit-queue@webkit.org | 89d806e | 2014-04-24 06:37:51 +0000 | [diff] [blame] | 9 | PASS stream2.active is true |
adam.bergkvist@ericsson.com | 335aa7a | 2013-03-04 10:07:39 +0000 | [diff] [blame] | 10 | PASS stream2.getAudioTracks().length is 1 |
| 11 | PASS stream2.getVideoTracks().length is 1 |
eric.carlson@apple.com | 01bf7ee | 2013-09-27 01:08:17 +0000 | [diff] [blame] | 12 | |
| 13 | *** remove an audio track |
adam.bergkvist@ericsson.com | 335aa7a | 2013-03-04 10:07:39 +0000 | [diff] [blame] | 14 | PASS stream1.getAudioTracks().length is 0 |
adam.bergkvist@ericsson.com | 335aa7a | 2013-03-04 10:07:39 +0000 | [diff] [blame] | 15 | PASS stream1.getTrackById(audioTrack.id) is null |
eric.carlson@apple.com | 01bf7ee | 2013-09-27 01:08:17 +0000 | [diff] [blame] | 16 | |
| 17 | *** remove a non-existent (already removed) track (should not throw) |
| 18 | |
| 19 | *** add the track back to the stream |
| 20 | |
| 21 | *** remove a video track |
li.yin@intel.com | fd3ae8e | 2013-03-18 09:28:08 +0000 | [diff] [blame] | 22 | PASS stream1.getVideoTracks().length is 0 |
adam.bergkvist@ericsson.com | 335aa7a | 2013-03-04 10:07:39 +0000 | [diff] [blame] | 23 | PASS stream1.getTrackById(videoTrack.id) is null |
eric.carlson@apple.com | 01bf7ee | 2013-09-27 01:08:17 +0000 | [diff] [blame] | 24 | |
| 25 | *** remove a non-existent (already removed) track (should not throw) |
| 26 | |
| 27 | *** add the track back to the stream |
| 28 | |
| 29 | *** verify added tracks |
adam.bergkvist@ericsson.com | 335aa7a | 2013-03-04 10:07:39 +0000 | [diff] [blame] | 30 | PASS stream1.getAudioTracks().length is 1 |
| 31 | PASS stream1.getVideoTracks().length is 1 |
| 32 | PASS stream1.getAudioTracks()[0].kind is audioTrack.kind |
| 33 | PASS stream1.getAudioTracks()[0].label is audioTrack.label |
| 34 | PASS stream1.getVideoTracks()[0].kind is videoTrack.kind |
| 35 | PASS stream1.getVideoTracks()[0].label is videoTrack.label |
eric.carlson@apple.com | 01bf7ee | 2013-09-27 01:08:17 +0000 | [diff] [blame] | 36 | |
| 37 | *** try adding a stream's own tracks again (nothing should happen) |
adam.bergkvist@ericsson.com | 335aa7a | 2013-03-04 10:07:39 +0000 | [diff] [blame] | 38 | PASS stream1.getAudioTracks().length is 1 |
| 39 | PASS stream1.getVideoTracks().length is 1 |
eric.carlson@apple.com | 01bf7ee | 2013-09-27 01:08:17 +0000 | [diff] [blame] | 40 | |
| 41 | *** add tracks from another stream |
| 42 | |
| 43 | *** verify added tracks |
adam.bergkvist@ericsson.com | 335aa7a | 2013-03-04 10:07:39 +0000 | [diff] [blame] | 44 | PASS stream1.getAudioTracks().length is 2 |
| 45 | PASS stream1.getVideoTracks().length is 2 |
eric.carlson@apple.com | 01bf7ee | 2013-09-27 01:08:17 +0000 | [diff] [blame] | 46 | |
adam.bergkvist@ericsson.com | 3a5a2c5 | 2015-06-29 19:52:21 +0000 | [diff] [blame] | 47 | *** remove all tracks, stream will become inactive |
eric.carlson@apple.com | 439f74a | 2013-10-29 20:48:21 +0000 | [diff] [blame] | 48 | PASS stream2.getAudioTracks().length is 0 |
| 49 | PASS stream2.getVideoTracks().length is 0 |
eric.carlson@apple.com | 01bf7ee | 2013-09-27 01:08:17 +0000 | [diff] [blame] | 50 | |
adam.bergkvist@ericsson.com | 3a5a2c5 | 2015-06-29 19:52:21 +0000 | [diff] [blame] | 51 | *** active attribute is still true (until event is fired) |
| 52 | PASS stream2.active is true |
| 53 | |
commit-queue@webkit.org | 89d806e | 2014-04-24 06:37:51 +0000 | [diff] [blame] | 54 | Stream2 is inactive. |
adam.bergkvist@ericsson.com | 3a5a2c5 | 2015-06-29 19:52:21 +0000 | [diff] [blame] | 55 | PASS stream2.active is false |
| 56 | |
| 57 | *** add non-ended track |
| 58 | PASS audioTrack.readyState is not "ended" |
| 59 | |
| 60 | *** active attribute is still false (until event is fired) |
| 61 | PASS stream2.active is false |
| 62 | |
| 63 | Stream2 is active. |
| 64 | PASS stream2.active is true |
adam.bergkvist@ericsson.com | 335aa7a | 2013-03-04 10:07:39 +0000 | [diff] [blame] | 65 | PASS successfullyParsed is true |
| 66 | |
| 67 | TEST COMPLETE |
| 68 | |