File: test_comp_life.py

package info (click to toggle)
audio-visualizer-python 2.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 948 kB
  • sloc: python: 6,683; sh: 15; makefile: 10
file content (22 lines) | stat: -rw-r--r-- 718 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from avp.command import Command
from pytestqt import qtbot
from pytest import fixture
from . import imageDataSum, command


@fixture
def coreWithLifeComp(qtbot, command):
    """Fixture providing a Command object with Waveform component added"""
    command.settings.setValue("outputHeight", 1080)
    command.settings.setValue("outputWidth", 1920)
    command.core.insertComponent(
        0, command.core.moduleIndexFor("Conway's Game of Life"), command
    )
    yield command.core


def test_comp_life_previewRender(coreWithLifeComp):
    comp = coreWithLifeComp.selectedComponents[0]
    comp.page.lineEdit_color.setText("111,111,111")
    image = comp.previewRender()
    assert imageDataSum(image) == 339785512