summaryrefslogtreecommitdiffstats
path: root/tests/qfileinfo/qfileinfo.qs
blob: e061d2c42f30fe5fb8ecf76b69a938be74e2271c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
include("../test.js")

var absolute = new QFileInfo(utils.currentScripRoot + "/test.cpp")
var relative = new QFileInfo("relative")

compare(absolute.exists, true)
compare(relative.exists, false)

compare(relative.filePath, "relative")
assert(endsWith(absolute.filePath, "test.cpp"), "filePath for absolute files")

assert(startsWith(relative.absoluteFilePath,"/"))
compare(absolute.fileName, "test.cpp")

compare(absolute.isRelative, false)
compare(relative.isRelative, true)
compare(absolute.size, 61)

assert(absolute.created.getFullYear() > 2012)

var gotIt = false
try {
    new QFileInfo()
}
catch(message) {
    gotIt = true
}
assert(gotIt, "We should throw an error when constructing a QFileInfo without a file")

function endsWith(str,pattern) {
    return str.substr(str.length-pattern.length,pattern.length) == pattern
}

function startsWith(str,pattern) {
    return str.substr(0,pattern.length) == pattern
}