2008-07-30 04:55:27 +00:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is Mozilla code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is the Mozilla Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2007
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
# Chris Double <chris.double@double.co.nz>
|
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
2009-06-26 04:23:15 +00:00
|
|
|
DEPTH = ../../..
|
2008-07-30 04:55:27 +00:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
2009-06-26 04:23:15 +00:00
|
|
|
relativesrcdir = content/media/test
|
2008-07-30 04:55:27 +00:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2009-07-10 02:03:01 +00:00
|
|
|
# Media tests should be backend independent, i.e., not conditioned on
|
|
|
|
# MOZ_OGG, MOZ_WAVE etc. (The only exception is the can_play_type tests,
|
|
|
|
# which necessarily depend on the backend(s) configured.) As far as possible,
|
|
|
|
# each test should work with any resource type. This makes it
|
|
|
|
# easy to add new backends and reduces the amount of test duplication.
|
|
|
|
|
|
|
|
# For each supported backend, resources that can be played by that backend
|
|
|
|
# should be added to the lists in manifest.js. Media tests that aren't
|
|
|
|
# testing for a bug in handling a specific resource type should pick one of
|
|
|
|
# the lists in manifest.js and run the test for each resource in the list
|
|
|
|
# that is supported in the current build (the canPlayType API is useful
|
|
|
|
# for this).
|
|
|
|
|
|
|
|
# To test whether a valid resource can simply be played through correctly,
|
|
|
|
# and optionally that its metadata is read correctly, just
|
|
|
|
# add it to gPlayTests in manifest.js. To test whether an invalid
|
|
|
|
# resource correctly throws an error (and does not cause a crash or hang),
|
|
|
|
# just add it to gErrorTests in manifest.js.
|
|
|
|
|
|
|
|
# To test for a specific bug in handling a specific resource type,
|
|
|
|
# make the test first check canPlayType for the type, and if it's not
|
|
|
|
# supported, just do ok(true, "Type not supported") and stop the test.
|
|
|
|
|
2008-12-15 23:31:51 +00:00
|
|
|
_TEST_FILES = \
|
2008-12-17 02:11:07 +00:00
|
|
|
can_play_type_ogg.js \
|
|
|
|
can_play_type_wave.js \
|
2009-07-10 02:03:01 +00:00
|
|
|
manifest.js \
|
2009-07-10 02:03:02 +00:00
|
|
|
seek1.js \
|
|
|
|
seek2.js \
|
|
|
|
seek3.js \
|
|
|
|
seek4.js \
|
|
|
|
seek5.js \
|
|
|
|
seek6.js \
|
|
|
|
seek7.js \
|
|
|
|
seek8.js \
|
|
|
|
seek9.js \
|
2009-05-18 02:00:44 +00:00
|
|
|
test_autobuffer.html \
|
2008-12-15 23:31:51 +00:00
|
|
|
test_autoplay.html \
|
2008-12-17 02:11:07 +00:00
|
|
|
test_can_play_type.html \
|
2008-12-15 23:31:51 +00:00
|
|
|
test_constants.html \
|
|
|
|
test_controls.html \
|
|
|
|
test_currentTime.html \
|
2009-07-10 02:03:01 +00:00
|
|
|
test_decoder_disable.html \
|
|
|
|
test_load.html \
|
|
|
|
test_media_selection.html \
|
2008-12-15 23:31:51 +00:00
|
|
|
test_networkState.html \
|
|
|
|
test_paused.html \
|
2009-07-10 02:03:01 +00:00
|
|
|
test_playback.html \
|
|
|
|
test_playback_errors.html \
|
2008-12-15 23:31:51 +00:00
|
|
|
test_readyState.html \
|
2009-07-10 02:03:02 +00:00
|
|
|
test_seek.html \
|
2008-12-15 23:31:51 +00:00
|
|
|
test_seek2.html \
|
|
|
|
test_volume.html \
|
2009-04-01 00:52:56 +00:00
|
|
|
use_large_cache.js \
|
2008-12-15 23:31:51 +00:00
|
|
|
$(NULL)
|
|
|
|
|
2009-07-10 02:03:01 +00:00
|
|
|
# Ogg sample files
|
|
|
|
_TEST_FILES += \
|
|
|
|
320x240.ogv \
|
|
|
|
320x240.allow-origin.ogv \
|
|
|
|
320x240.allow-origin.ogv^headers^ \
|
|
|
|
bug461281.ogg \
|
|
|
|
bug482461.ogv \
|
|
|
|
seek.ogv \
|
|
|
|
small-shot.ogg \
|
|
|
|
sound.ogg \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
# Wave sample files
|
|
|
|
_TEST_FILES += \
|
|
|
|
big.wav \
|
|
|
|
r11025_s16_c1.wav \
|
|
|
|
r11025_s16_c1_trailing.wav \
|
|
|
|
r11025_u8_c1.wav \
|
|
|
|
r11025_u8_c1_trunc.wav \
|
|
|
|
r16000_u8_c1_list.wav \
|
|
|
|
$(NULL)
|
|
|
|
|
2009-07-10 02:03:01 +00:00
|
|
|
# These tests need to be converted to be backend-independent. This list
|
|
|
|
# is deprecated, do not add to it.
|
2008-12-15 23:31:51 +00:00
|
|
|
ifdef MOZ_OGG
|
|
|
|
_TEST_FILES += \
|
2009-05-13 21:52:50 +00:00
|
|
|
dynamic_redirect.sjs \
|
2009-01-24 11:00:17 +00:00
|
|
|
test_access_control.html \
|
|
|
|
file_access_controls.html \
|
2009-05-19 05:18:41 +00:00
|
|
|
test_audio1.html \
|
|
|
|
test_audio2.html \
|
2008-12-15 23:31:51 +00:00
|
|
|
test_bug448534.html \
|
2009-02-19 17:23:13 +00:00
|
|
|
test_bug468190.html \
|
2009-05-18 22:47:08 +00:00
|
|
|
test_bug493187.html \
|
2009-05-28 03:49:22 +00:00
|
|
|
test_bug495145.html \
|
2009-05-31 10:02:17 +00:00
|
|
|
test_bug495300.html \
|
2009-06-01 21:54:16 +00:00
|
|
|
test_bug495319.html \
|
2009-05-18 02:02:20 +00:00
|
|
|
test_closing_connections.html \
|
2009-02-07 10:10:34 +00:00
|
|
|
test_contentDuration1.html \
|
|
|
|
test_contentDuration2.html \
|
|
|
|
test_contentDuration3.html \
|
|
|
|
test_contentDuration4.html \
|
|
|
|
test_contentDuration5.html \
|
|
|
|
test_contentDuration6.html \
|
2009-03-08 21:01:03 +00:00
|
|
|
test_delay_load.html \
|
2008-12-15 23:31:51 +00:00
|
|
|
test_duration1.html \
|
|
|
|
test_ended1.html \
|
|
|
|
test_ended2.html \
|
2009-02-15 16:26:32 +00:00
|
|
|
test_error_on_404.html \
|
2009-03-08 21:02:14 +00:00
|
|
|
test_info_leak.html \
|
2008-12-15 23:31:51 +00:00
|
|
|
test_onloadedmetadata.html \
|
2009-02-20 02:49:00 +00:00
|
|
|
test_load_candidates.html \
|
2009-05-13 21:52:50 +00:00
|
|
|
test_mixed_principals.html \
|
2009-03-08 20:59:08 +00:00
|
|
|
test_play.html \
|
2009-02-05 08:02:21 +00:00
|
|
|
test_progress1.html \
|
2009-01-15 20:26:51 +00:00
|
|
|
test_progress3.html \
|
2009-02-16 01:05:28 +00:00
|
|
|
test_source.html \
|
|
|
|
test_source_write.html \
|
2008-12-15 23:31:51 +00:00
|
|
|
test_standalone.html \
|
|
|
|
test_timeupdate1.html \
|
|
|
|
test_timeupdate2.html \
|
2009-01-24 11:00:17 +00:00
|
|
|
redirect.sjs \
|
2009-02-07 10:10:34 +00:00
|
|
|
contentDuration1.sjs \
|
|
|
|
contentDuration2.sjs \
|
|
|
|
contentDuration3.sjs \
|
|
|
|
contentDuration4.sjs \
|
|
|
|
contentDuration5.sjs \
|
|
|
|
contentDuration6.sjs \
|
2008-12-15 23:31:51 +00:00
|
|
|
$(NULL)
|
2009-05-19 05:44:23 +00:00
|
|
|
# These tests disabled until we figure out random failures.
|
|
|
|
# Bug 492821:
|
2009-05-16 03:20:39 +00:00
|
|
|
# test_videoDocumentTitle.html
|
2009-05-19 05:44:23 +00:00
|
|
|
# Bug 493692:
|
|
|
|
# test_autobuffer2.html
|
2009-01-27 02:33:03 +00:00
|
|
|
ifneq ($(OS_ARCH),WINNT)
|
|
|
|
# These tests are disabled on windows until we
|
|
|
|
# figure out the random failures. See bug 475369.
|
|
|
|
_TEST_FILES += \
|
|
|
|
test_timeupdate3.html \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
2009-07-10 02:03:01 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef MOZ_OGG
|
|
|
|
_TEST_FILES += \
|
|
|
|
test_can_play_type_ogg.html \
|
|
|
|
$(NULL)
|
2008-12-17 02:11:07 +00:00
|
|
|
else
|
|
|
|
_TEST_FILES += \
|
|
|
|
test_can_play_type_no_ogg.html \
|
|
|
|
$(NULL)
|
2008-12-15 23:31:51 +00:00
|
|
|
endif
|
|
|
|
|
2009-07-10 02:03:01 +00:00
|
|
|
# These tests need to be converted to be backend-independent. This list
|
|
|
|
# is deprecated, do not add to it.
|
2008-12-15 23:31:51 +00:00
|
|
|
ifdef MOZ_WAVE
|
|
|
|
_TEST_FILES += \
|
2008-12-16 03:32:03 +00:00
|
|
|
test_bug463162.xhtml \
|
2009-02-19 17:23:13 +00:00
|
|
|
test_bug465498.html \
|
|
|
|
test_bug468190_wav.html \
|
2009-05-28 03:49:22 +00:00
|
|
|
test_bug495145_wav.html \
|
2009-02-26 11:55:30 +00:00
|
|
|
test_paused_after_ended.html \
|
2009-06-09 14:07:22 +00:00
|
|
|
test_progress2.html \
|
|
|
|
test_progress4.html \
|
2008-12-15 23:31:51 +00:00
|
|
|
test_wav_ended1.html \
|
2009-02-19 17:23:13 +00:00
|
|
|
test_wav_ended2.html \
|
|
|
|
test_wav_onloadedmetadata.html \
|
|
|
|
test_wav_timeupdate1.html \
|
|
|
|
test_wav_timeupdate2.html \
|
2008-12-15 23:31:51 +00:00
|
|
|
test_wav_trunc_seek.html \
|
|
|
|
$(NULL)
|
2009-05-25 00:42:19 +00:00
|
|
|
# Disabled since we don't play Wave files standalone, for now
|
|
|
|
# test_wav_standalone.html
|
|
|
|
# test_audioDocumentTitle.html
|
2009-07-10 02:03:01 +00:00
|
|
|
endif
|
2009-05-25 00:42:19 +00:00
|
|
|
|
2008-12-15 23:31:51 +00:00
|
|
|
ifdef MOZ_WAVE
|
|
|
|
_TEST_FILES += \
|
2009-07-10 02:03:01 +00:00
|
|
|
test_can_play_type_wave.html \
|
|
|
|
$(NULL)
|
|
|
|
else
|
|
|
|
_TEST_FILES += \
|
|
|
|
test_can_play_type_no_wave.html \
|
2008-12-15 23:31:51 +00:00
|
|
|
$(NULL)
|
|
|
|
endif
|
2008-07-30 04:55:27 +00:00
|
|
|
|
|
|
|
libs:: $(_TEST_FILES)
|
|
|
|
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/tests/$(relativesrcdir)
|