def test_setcontents(tmppath):
    """Test setcontents."""
    fs = XRootDPyFS(mkurl(tmppath))
    fs.setcontents('data/testa.txt', "mytest")
    assert fs.getcontents('data/testa.txt') == "mytest"
def test_setcontents(tmppath):
    """Test setcontents."""
    fs = XRootDPyFS(mkurl(tmppath))
    fs.setcontents('data/testa.txt', "mytest")
    assert fs.getcontents('data/testa.txt') == b"mytest"
def test_getcontents(tmppath):
    """Test getcontents."""
    fs = XRootDPyFS(mkurl(tmppath))
    assert fs.getcontents('data/testa.txt') == "testa.txt\n"
    pytest.raises(ResourceNotFoundError, fs.getcontents, 'data/invalid.txt')
def test_getcontents(tmppath):
    """Test getcontents."""
    fs = XRootDPyFS(mkurl(tmppath))
    assert fs.getcontents('data/testa.txt') == b"testa.txt\n"
    pytest.raises(ResourceNotFoundError, fs.getcontents, 'data/invalid.txt')