12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- #!/bin/sh
- # Licensed to the Apache Software Foundation (ASF) under one or more
- # contributor license agreements. See the NOTICE file distributed with
- # this work for additional information regarding copyright ownership.
- # The ASF licenses this file to You 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.
- . $(dirname "$0")/../misc.sh
- echo "Hello World!" > "${localDir}/dat"
- hadoop fs -put "${localDir}/dat" "${baseDir}/"
- echo "1..10"
- # 1. chown
- hadoop fs -chown "hadoop-compat-bench-user" "${baseDir}/dat"
- expect_out "chown" "user:hadoop-compat-bench-user" hadoop fs -stat "user:%u" "${baseDir}/dat"
- # 2. chgrp
- hadoop fs -chgrp "hadoop-compat-bench-group" "${baseDir}/dat"
- expect_out "chgrp" "group:hadoop-compat-bench-group" hadoop fs -stat "group:%g" "${baseDir}/dat"
- # 3. chmod
- hadoop fs -chmod 777 "${baseDir}/dat"
- expect_out "chmod" "perm:777" hadoop fs -stat "perm:%a" "${baseDir}/dat"
- # 4. touch
- hadoop fs -touch -m -t "20000615:000000" "${baseDir}/dat"
- expect_out "touch" "date:2000-06-.*" hadoop fs -stat "date:%y" "${baseDir}/dat"
- # 5. setfattr
- expect_ret "setfattr" 0 hadoop fs -setfattr -n "user.key" -v "value" "${baseDir}/dat"
- # 6. getfattr
- expect_out "getfattr" ".*value.*" hadoop fs -getfattr -n "user.key" "${baseDir}/dat"
- # 7. setfacl
- expect_ret "setfacl" 0 hadoop fs -setfacl -m "user:foo:---" "${baseDir}/dat"
- # 8. getfacl
- expect_out "getfacl" ".*foo.*" hadoop fs -getfacl "${baseDir}/dat"
- # 9. setrep
- hadoop fs -setrep 1 "${baseDir}/dat"
- expect_out "setrep" "replication:1" hadoop fs -stat "replication:%r" "${baseDir}/dat"
- # 10. checksum
- expect_ret "checksum" 0 hadoop fs -checksum "${baseDir}/dat" # TODO
|