1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
# -*- coding: utf-8 -*-
# Pitivi video editor
# Copyright (c) 2009, Alessandro Decina <alessandro.decina@collabora.co.uk>
# Copyright (c) 2014, Mathieu Duponchelle <mduponchelle1@gmail.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this program; if not, see <http://www.gnu.org/licenses/>.
import time
from unittest import mock
from gi.repository import GLib
from gi.repository import Gst
from gi.repository import GstPbutils
from pitivi.check import CairoDependency
from pitivi.check import ClassicDependency
from pitivi.check import GstDependency
from pitivi.check import GtkDependency
from pitivi.utils.misc import fixate_caps_with_default_values
from pitivi.utils.ui import beautify_last_updated_timestamp
from pitivi.utils.ui import beautify_length
from pitivi.utils.ui import create_frame_rates_model
from pitivi.utils.ui import filter_unsupported_media_files
from pitivi.utils.ui import format_audiochannels
from pitivi.utils.ui import format_audiorate
from pitivi.utils.ui import format_framerate_value
from pitivi.utils.ui import pack_color_32
from pitivi.utils.ui import pack_color_64
from pitivi.utils.ui import unpack_color_32
from pitivi.utils.ui import unpack_color_64
from tests import common
class TestBeautifyTime(common.TestCase):
"""Tests time beautifying utility methods."""
def test_beautify_length(self):
"""Tests beautification of time duration."""
second = Gst.SECOND
minute = second * 60
hour = minute * 60
self.assertEqual(beautify_length(second), "1 second")
self.assertEqual(beautify_length(second * 2), "2 seconds")
self.assertEqual(beautify_length(minute), "1 minute")
self.assertEqual(beautify_length(minute * 2), "2 minutes")
self.assertEqual(beautify_length(hour), "1 hour")
self.assertEqual(beautify_length(hour * 2), "2 hours")
self.assertEqual(beautify_length(minute + second), "1 minute, 1 second")
self.assertEqual(beautify_length(hour + minute + second), "1 hour, 1 minute")
self.assertEqual(beautify_length(Gst.CLOCK_TIME_NONE), "")
def test_beautify_last_updated_timestamp(self):
"""Tests beautification of project's update timestamp."""
# The oracles are based on 1970-01-01 00:00:00+00:00 (a Thursday).
self.__check_beautify_last_updated_timestamp(0, "Just now")
self.__check_beautify_last_updated_timestamp(60 * 45 - 1, "Just now")
self.__check_beautify_last_updated_timestamp(60 * 45, "An hour ago")
self.__check_beautify_last_updated_timestamp(60 * 90 - 1, "An hour ago")
self.__check_beautify_last_updated_timestamp(60 * 90, "Today")
self.__check_beautify_last_updated_timestamp(60 * 60 * 24 - 1, "Today")
self.__check_beautify_last_updated_timestamp(60 * 60 * 24, "Yesterday")
self.__check_beautify_last_updated_timestamp(60 * 60 * 24 * 2 - 1, "Yesterday")
self.__check_beautify_last_updated_timestamp(60 * 60 * 24 * 2, "Thursday")
self.__check_beautify_last_updated_timestamp(60 * 60 * 24 * 7 - 1, "Thursday")
self.__check_beautify_last_updated_timestamp(60 * 60 * 24 * 7, "January")
self.__check_beautify_last_updated_timestamp(60 * 60 * 24 * 365 - 1, "January")
self.__check_beautify_last_updated_timestamp(60 * 60 * 24 * 365, "About a year ago")
self.__check_beautify_last_updated_timestamp(60 * 60 * 24 * 365 * 1.5 - 1, "About a year ago")
self.__check_beautify_last_updated_timestamp(60 * 60 * 24 * 365 * 1.5, "About 2 years ago")
self.__check_beautify_last_updated_timestamp(60 * 60 * 24 * 365 * 3, "About 3 years ago")
def __check_beautify_last_updated_timestamp(self, now_seconds, expected):
with mock.patch.object(time, "time"):
time.time.return_value = now_seconds
with mock.patch.object(time, "localtime"):
# Mock to use UTC, so that weekday naming is not timezone dependent.
previously_seconds = 0
time.localtime.return_value = time.gmtime(previously_seconds)
self.assertEqual(beautify_last_updated_timestamp(previously_seconds), expected)
class TestFormatFramerateValue(common.TestCase):
def __check(self, num, denom, expected):
stream = mock.Mock(spec=GstPbutils.DiscovererVideoInfo)
fraction = mock.Mock(num=num, denom=denom)
stream.get_framerate_num = mock.Mock(return_value=num)
stream.get_framerate_denom = mock.Mock(return_value=denom)
self.assertEqual(format_framerate_value(stream), expected)
self.assertEqual(format_framerate_value(fraction), expected)
def test_invalid_fps(self):
self.__check(0, 1, "0")
self.__check(0, 0, "0")
self.__check(1, 0, "0")
def test_int_fps(self):
self.__check(1, 1, "1")
self.__check(24, 1, "24")
def test_float_fps(self):
self.__check(24000, 1001, "23.976")
self.__check(30000, 1001, "29.97")
self.__check(60000, 1001, "59.94")
def test_high_fps(self):
self.__check(2500, 1, "2,500")
self.__check(120, 1, "120")
class TestFormatAudiorate(common.TestCase):
def __check(self, rate, expected):
stream = mock.Mock(spec=GstPbutils.DiscovererAudioInfo)
stream.get_sample_rate = mock.Mock(return_value=rate)
self.assertEqual(format_audiorate(stream), expected)
self.assertEqual(format_audiorate(rate), expected)
def test_audiorates(self):
self.__check(8000, "8 kHz")
self.__check(11025, "11 kHz")
self.__check(22050, "22 kHz")
self.__check(44100, "44.1 kHz")
self.__check(96000, "96 kHz")
self.__check(960000, "960 kHz")
class TestFormatAudiochannels(common.TestCase):
def __check(self, channels, expected):
stream = mock.Mock(spec=GstPbutils.DiscovererAudioInfo)
stream.get_channels = mock.Mock(return_value=channels)
self.assertEqual(format_audiochannels(stream), expected)
self.assertEqual(format_audiochannels(channels), expected)
def test_audiochannels(self):
self.__check(1, "Mono")
self.__check(2, "Stereo")
self.__check(6, "6 (5.1)")
class TestDependencyChecks(common.TestCase):
def test_dependencies(self):
gi_dep = GstDependency("Gst", "1.0", "1.0.0")
gi_dep.check()
self.assertTrue(gi_dep.satisfied)
gi_dep = GstDependency("Gst", "1.0", "9.9.9")
gi_dep.check()
self.assertFalse(gi_dep.satisfied)
gi_dep = GstDependency("ThisShouldNotExist", None)
gi_dep.check()
self.assertFalse(gi_dep.satisfied)
gi_dep = GtkDependency("Gtk", "3.0", "3.0.0")
gi_dep.check()
self.assertTrue(gi_dep.satisfied)
gi_dep = GtkDependency("Gtk", "3.0", "9.9.9")
gi_dep.check()
self.assertFalse(gi_dep.satisfied)
cairo_dep = CairoDependency("1.0.0")
cairo_dep.check()
self.assertTrue(cairo_dep.satisfied)
cairo_dep = CairoDependency("9.9.9")
cairo_dep.check()
self.assertFalse(cairo_dep.satisfied)
classic_dep = ClassicDependency("numpy", None)
classic_dep.check()
self.assertTrue(classic_dep.satisfied)
class TestMiscUtils(common.TestCase):
def test_fixate_caps_with_defalt_values(self):
voaacenc_caps = Gst.Caps.from_string(
"audio/x-raw, format=(string)S16LE, layout=(string)interleaved, rate=(int){ 8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000, 64000, 88200, 96000 }, channels=(int)1;"
"audio/x-raw, format=(string)S16LE, layout=(string)interleaved, rate=(int){ 8000, 11025, 12000, 16000, 22050, 24000, 32000, 44100, 48000, 64000, 88200, 96000 }, channels=(int)2, channel-mask=(bitmask)0x0000000000000003")
yt_audiorest = Gst.Caps("audio/x-raw,channels=6,channel-mask=0x3f,rate={48000,96000};"
"audio/x-raw,channels=2,rate={48000,96000}")
vorbis_caps = Gst.Caps("audio/x-raw, format=(string)F32LE, layout=(string)interleaved, rate=(int)[ 1, 200000 ], channels=(int)1;"
"audio/x-raw, format=(string)F32LE, layout=(string)interleaved, rate=(int)[ 1, 200000 ], channels=(int)2, channel-mask=(bitmask)0x0000000000000003;"
"audio/x-raw, format=(string)F32LE, layout=(string)interleaved, rate=(int)[ 1, 200000 ], channels=(int)3, channel-mask=(bitmask)0x0000000000000007;"
"audio/x-raw, format=(string)F32LE, layout=(string)interleaved, rate=(int)[ 1, 200000 ], channels=(int)4, channel-mask=(bitmask)0x0000000000000033;"
"audio/x-raw, format=(string)F32LE, layout=(string)interleaved, rate=(int)[ 1, 200000 ], channels=(int)5, channel-mask=(bitmask)0x0000000000000037;"
"audio/x-raw, format=(string)F32LE, layout=(string)interleaved, rate=(int)[ 1, 200000 ], channels=(int)6, channel-mask=(bitmask)0x000000000000003f;"
"audio/x-raw, format=(string)F32LE, layout=(string)interleaved, rate=(int)[ 1, 200000 ], channels=(int)7, channel-mask=(bitmask)0x0000000000000d0f;"
"audio/x-raw, format=(string)F32LE, layout=(string)interleaved, rate=(int)[ 1, 200000 ], channels=(int)8, channel-mask=(bitmask)0x0000000000000c3f;"
"audio/x-raw, format=(string)F32LE, layout=(string)interleaved, rate=(int)[ 1, 200000 ], channels=(int)[ 9, 255 ], channel-mask=(bitmask)0x0000000000000000")
avenc_ac3_caps = Gst.Caps("audio/x-raw, channel-mask=(bitmask)0x0000000000000000, channels=(int)1, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x0000000000000003, channels=(int)2, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x0000000000000103, channels=(int)3, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x0000000000000007, channels=(int)3, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x0000000000000c03, channels=(int)4, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x0000000000000033, channels=(int)4, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x0000000000000107, channels=(int)4, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x0000000000000c07, channels=(int)5, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x0000000000000037, channels=(int)5, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x000000000000000c, channels=(int)2, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x000000000000000b, channels=(int)3, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x000000000000010b, channels=(int)4, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x000000000000000f, channels=(int)4, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x0000000000000c0b, channels=(int)5, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x000000000000003b, channels=(int)5, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x000000000000010f, channels=(int)5, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x0000000000000c0f, channels=(int)6, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;"
" audio/x-raw, channel-mask=(bitmask)0x000000000000003f, channels=(int)6, rate=(int){ 48000, 44100, 32000 }, layout=(string)interleaved, format=(string)F32LE;")
audio_defaults = {"channels": Gst.IntRange(range(1, 2147483647)),
"rate": Gst.IntRange(range(8000, GLib.MAXINT))}
dataset = [
(voaacenc_caps, yt_audiorest, audio_defaults, None, Gst.Caps("audio/x-raw, channels=2,rate=48000,channel-mask=(bitmask)0x03")),
(vorbis_caps, None, audio_defaults, None, Gst.Caps("audio/x-raw,channels=1,rate=8000")),
(avenc_ac3_caps, None, audio_defaults, Gst.Caps("audio/x-raw, channels=(int)6, rate=(int)44100"), Gst.Caps("audio/x-raw, channels=(int)6, rate=(int)44100")),
]
for template, restrictions, default_values, prev_vals, expected in dataset:
res = fixate_caps_with_default_values(template, restrictions, default_values, prev_vals)
self.assertTrue(res.is_equal_fixed(expected), "%s != %s" % (res, expected))
class TestColors(common.TestCase):
def test_pack_color_32(self):
self.assertEqual(
0x01020408,
pack_color_32(0x01FF, 0x02FF, 0x04FF, 0x08FF))
def test_pack_color_64(self):
self.assertEqual(
0x01FF02FF04FF08FF,
pack_color_64(0x01FF, 0x02FF, 0x04FF, 0x08FF))
def test_unpack_color_32(self):
self.assertEqual(
(0x0100, 0x0200, 0x0400, 0x0800),
unpack_color_32(0x01020408))
def test_unpack_color_64(self):
self.assertEqual(
(0x01FF, 0x02FF, 0x04FF, 0x08FF),
unpack_color_64(0x01FF02FF04FF08FF))
class TestCreateFramerateModel(common.TestCase):
def test_create_framerate_model(self):
model = create_frame_rates_model((25, 2))
sorted_frameslist = [(12, 1),
(25, 2),
(15, 1),
(20, 1),
(24000, 1001),
(24, 1),
(25, 1),
(30000, 1001),
(30, 1),
(50, 1),
(60000, 1001),
(60, 1),
(120, 1),
]
self.assertListEqual([(row[1].num, row[1].denom) for row in model], sorted_frameslist)
class TestFiltering(common.TestCase):
def test_filter_unsupported_media_files(self):
mock_filter_info = mock.Mock()
mock_filter_info.mime_type = "video/mp4"
# Test HQ Proxies are filtered
mock_filter_info.uri = "file:///home/user/Videos/video.mp4.2360382.proxy.mov"
self.assertFalse(filter_unsupported_media_files(mock_filter_info))
# Test Scaled Proxies are filtered
mock_filter_info.uri = "file:///home/user/Videos/video.mp4.2360382.300x300.scaledproxy.mov"
self.assertFalse(filter_unsupported_media_files(mock_filter_info))
|