File size: 1,257 Bytes
8eb9491
 
 
47b8788
 
8eb9491
 
 
 
 
 
47b8788
 
8eb9491
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import subprocess
import pytest

from DeepFakeAI import wording
from DeepFakeAI.utilities import conditional_download


@pytest.fixture(scope = 'module', autouse = True)
def before_all() -> None:
	conditional_download('.assets/examples',
	[
		'https://github.com/DeepFakeAI/DeepFakeAI-assets/releases/download/examples/source.jpg',
		'https://github.com/DeepFakeAI/DeepFakeAI-assets/releases/download/examples/target-1080p.mp4'
	])
	subprocess.run([ 'ffmpeg', '-i', '.assets/examples/target-1080p.mp4', '-vframes', '1', '.assets/examples/target-1080p.jpg' ])


def test_image_to_image() -> None:
	commands = [ 'python', 'run.py', '-s', '.assets/examples/source.jpg', '-t', '.assets/examples/target-1080p.jpg', '-o', '.assets/examples' ]
	run = subprocess.run(commands, stdout = subprocess.PIPE)

	assert run.returncode == 0
	assert wording.get('processing_image_succeed') in run.stdout.decode()


def test_image_to_video() -> None:
	commands = [ 'python', 'run.py', '-s', '.assets/examples/source.jpg', '-t', '.assets/examples/target-1080p.mp4', '-o', '.assets/examples', '--trim-frame-end', '10' ]
	run = subprocess.run(commands, stdout = subprocess.PIPE)

	assert run.returncode == 0
	assert wording.get('processing_video_succeed') in run.stdout.decode()