view test/test_patch.py @ 1438:594160be47f1

device control page now saves new effects and can clear itself Ignore-this: 5166c8f19d3e399e15c1189d3c7e5a70
author drewp@bigasterisk.com
date Sat, 11 Jun 2016 21:03:45 +0000
parents a6662d61ebcd
children
line wrap: on
line source

import run_local
from light9 import dmxclient, Patch, Submaster
from light9.namespaces import L9

def test():
    assert Patch.get_channel_name(1) == "frontLeft"
    assert Patch.get_channel_name("1") == "frontLeft"
    assert Patch.get_channel_name("frontLeft") == "frontLeft"
    
    assert Patch.get_dmx_channel(1) == 1
    assert Patch.get_dmx_channel("1") == 1
    assert Patch.get_dmx_channel("frontLeft") == 1
    
    assert Patch.get_channel_name("b1") == "frontLeft"
    assert Patch.get_dmx_channel("b1") == 1
    assert Patch.resolve_name("b1") == "frontLeft"
    assert Patch.resolve_name("frontLeft") == "frontLeft"

    assert Patch.get_channel_uri("frontLeft") == L9['theater/skyline/channel/frontLeft']