示例#1
0
def test_minimal_folder(minimal_global_cfg):
    lyr = OWSFolder(
        {
            "title": "The Title",
            "abstract": "The Abstract",
            "layers": []
        },
        global_cfg=minimal_global_cfg)
    assert lyr.child_layers == []
    assert lyr.layer_count() == 0
    assert lyr.unready_layer_count() == 0
示例#2
0
def test_make_ready_empty(minimal_global_cfg, minimal_dc):
    lyr = OWSFolder(
        {
            "title": "The Title",
            "abstract": "The Abstract",
            "layers": []
        },
        global_cfg=minimal_global_cfg)
    lyr.make_ready(minimal_dc)
    assert len(lyr.unready_layers) == 0
    assert lyr.ready
示例#3
0
def test_make_ready_catch_errors(minimal_global_cfg, minimal_dc):
    lyr = OWSFolder(
        {
            "title": "The Title",
            "abstract": "The Abstract",
            "layers": []
        },
        global_cfg=minimal_global_cfg)
    testchild = MagicMock()
    testchild.make_ready.side_effect = ConfigException("KerPow!")
    lyr.unready_layers.append(testchild)
    lyr.make_ready(minimal_dc)
    assert len(lyr.unready_layers) == 1
    assert len(lyr.child_layers) == 0
    assert lyr.ready
示例#4
0
def test_folder_nolayers(minimal_global_cfg):
    with pytest.raises(ConfigException) as excinfo:
        lyr = OWSFolder({
            "title": "The Title",
            "abstract": "The Abstract",
        },
                        global_cfg=minimal_global_cfg)
    assert "No layers section" in str(excinfo.value)
    assert "The Title" in str(excinfo.value)
示例#5
0
def test_catch_invalid_folder_layers(minimal_global_cfg):
    lyr = OWSFolder(
        {
            "title": "The Title",
            "abstract": "The Abstract",
            "layers": [{
                "invalid": "config"
            }]
        },
        global_cfg=minimal_global_cfg)
    assert len(lyr.unready_layers) == 0
示例#6
0
def test_folder_counts(minimal_global_cfg):
    lyr = OWSFolder(
        {
            "title": "The Title",
            "abstract": "The Abstract",
            "layers": []
        },
        global_cfg=minimal_global_cfg)
    l1 = MagicMock()
    l2 = MagicMock()
    l3 = MagicMock()
    l4 = MagicMock()
    l1.layer_count.return_value = 1
    l2.layer_count.return_value = 2
    l3.layer_count.return_value = 1
    l4.layer_count.return_value = 3
    lyr.child_layers = [l1, l2]
    lyr.unready_layers = [l3, l4]
    assert lyr.layer_count() == 3
    assert lyr.unready_layer_count() == 4