From 76809b381999f407f716056f5564db708ca714de Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Wed, 8 Aug 2012 14:28:39 -0700 Subject: [PATCH] tests: test-readdir: initial commit seeing some readdir stuff that is weird in virgo. write a readdir test for luvit. --- tests/test-readdir.lua | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 tests/test-readdir.lua diff --git a/tests/test-readdir.lua b/tests/test-readdir.lua new file mode 100644 index 000000000..e4a28c7b6 --- /dev/null +++ b/tests/test-readdir.lua @@ -0,0 +1,38 @@ +--[[ + +Copyright 2012 The Luvit Authors. All Rights Reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS-IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + +--]] + +require("helper") +local path = require('path') +local fs = require('fs') + +local dir = path.join(__dirname, 'tmp', 'readdir') +if not fs.existsSync(dir) then + fs.mkdirSync(dir, "0755") +end + +fs.writeFileSync(path.join(dir, "1"), "") +fs.writeFileSync(path.join(dir, "2"), "") +fs.writeFileSync(path.join(dir, "3"), "") + +local files = fs.readdirSync(dir) +assert(#files == 3) + +fs.readdir(dir, function(err, files) + assert(err == nil) + assert(#files == 3) +end)