aboutsummaryrefslogtreecommitdiff
path: root/tools/rbcrun/testdata/file_ops.star
blob: e1f1ac27ea100c669f6891ceeaafe02d4930fd32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Tests file ops builtins
load("assert.star", "assert")


def test():
    myname = "file_ops.star"
    assert.true(rblf_file_exists(myname), "the file %s does exist" % myname)
    assert.true(not rblf_file_exists("no_such_file"), "the file no_such_file does not exist")
    files = rblf_wildcard("*.star")
    assert.true(myname in files, "expected %s in  %s" % (myname, files))
    # RBCDATADIR is set by the caller to the path where this file resides
    files = rblf_wildcard("*.star", rblf_env.TEST_DATA_DIR)
    assert.true(myname in files, "expected %s in %s" % (myname, files))
    files = rblf_wildcard("*.xxx")
    assert.true(len(files) == 0, "expansion should be empty but contains %s" % files)


test()