1*96c8483aSYuri Pankov#!/bin/ksh -p
2*96c8483aSYuri Pankov#
3*96c8483aSYuri Pankov# CDDL HEADER START
4*96c8483aSYuri Pankov#
5*96c8483aSYuri Pankov# The contents of this file are subject to the terms of the
6*96c8483aSYuri Pankov# Common Development and Distribution License (the "License").
7*96c8483aSYuri Pankov# You may not use this file except in compliance with the License.
8*96c8483aSYuri Pankov#
9*96c8483aSYuri Pankov# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*96c8483aSYuri Pankov# or http://www.opensolaris.org/os/licensing.
11*96c8483aSYuri Pankov# See the License for the specific language governing permissions
12*96c8483aSYuri Pankov# and limitations under the License.
13*96c8483aSYuri Pankov#
14*96c8483aSYuri Pankov# When distributing Covered Code, include this CDDL HEADER in each
15*96c8483aSYuri Pankov# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*96c8483aSYuri Pankov# If applicable, add the following below this CDDL HEADER, with the
17*96c8483aSYuri Pankov# fields enclosed by brackets "[]" replaced with your own identifying
18*96c8483aSYuri Pankov# information: Portions Copyright [yyyy] [name of copyright owner]
19*96c8483aSYuri Pankov#
20*96c8483aSYuri Pankov# CDDL HEADER END
21*96c8483aSYuri Pankov#
22*96c8483aSYuri Pankov
23*96c8483aSYuri Pankov#
24*96c8483aSYuri Pankov# Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
25*96c8483aSYuri Pankov#
26*96c8483aSYuri Pankov
27*96c8483aSYuri Pankov#
28*96c8483aSYuri Pankov# ID: create_004
29*96c8483aSYuri Pankov#
30*96c8483aSYuri Pankov# DESCRIPTION:
31*96c8483aSYuri Pankov#        Verify can create 50000 byte file on the smbfs
32*96c8483aSYuri Pankov#
33*96c8483aSYuri Pankov# STRATEGY:
34*96c8483aSYuri Pankov#       1. run "mount -F smbfs //server/public /export/mnt"
35*96c8483aSYuri Pankov#       2. dd and rm can get the right message
36*96c8483aSYuri Pankov#
37*96c8483aSYuri Pankov
38*96c8483aSYuri Pankov. $STF_SUITE/include/libtest.ksh
39*96c8483aSYuri Pankov
40*96c8483aSYuri Pankovtc_id="create004"
41*96c8483aSYuri Pankovtc_desc=" Verify can create files on the smbfs"
42*96c8483aSYuri Pankovprint_test_case $tc_id - $tc_desc
43*96c8483aSYuri Pankov
44*96c8483aSYuri Pankovif [[ $STC_CIFS_CLIENT_DEBUG == 1 ]] || \
45*96c8483aSYuri Pankov	[[ *:${STC_CIFS_CLIENT_DEBUG}:* == *:$tc_id:* ]]; then
46*96c8483aSYuri Pankov    set -x
47*96c8483aSYuri Pankovfi
48*96c8483aSYuri Pankov
49*96c8483aSYuri Pankovserver=$(server_name) || return
50*96c8483aSYuri Pankov
51*96c8483aSYuri Pankovtestdir_init $TDIR
52*96c8483aSYuri Pankovsmbmount_clean $TMNT
53*96c8483aSYuri Pankovsmbmount_init $TMNT
54*96c8483aSYuri Pankov
55*96c8483aSYuri Pankovcmd="mount -F smbfs //$TUSER:$TPASS@$server/public $TMNT"
56*96c8483aSYuri Pankovcti_execute -i '' FAIL $cmd
57*96c8483aSYuri Pankovif [[ $? != 0 ]]; then
58*96c8483aSYuri Pankov	cti_fail "FAIL: smbmount can't mount the public share"
59*96c8483aSYuri Pankov	return
60*96c8483aSYuri Pankovelse
61*96c8483aSYuri Pankov	cti_report "PASS: smbmount can mount the public share"
62*96c8483aSYuri Pankovfi
63*96c8483aSYuri Pankov
64*96c8483aSYuri Pankov# create 50000 byte file
65*96c8483aSYuri Pankovcmd="dd if=/dev/zero of=$TMNT/file50000 bs=500 count=100"
66*96c8483aSYuri Pankovcti_execute_cmd $cmd
67*96c8483aSYuri Pankovif [[ $? != 0 ]]; then
68*96c8483aSYuri Pankov	cti_fail "FAIL: failed to dd a 50000b file"
69*96c8483aSYuri Pankov	return
70*96c8483aSYuri Pankovelse
71*96c8483aSYuri Pankov	cti_report "PASS: dd a 50000b file successfully"
72*96c8483aSYuri Pankovfi
73*96c8483aSYuri Pankov
74*96c8483aSYuri Pankovsize=$(file_size $TMNT/file50000)
75*96c8483aSYuri Pankovif ((size != 50000)); then
76*96c8483aSYuri Pankov	cti_fail "FAIL: the file size($size) is != 50000"
77*96c8483aSYuri Pankov	return
78*96c8483aSYuri Pankovelse
79*96c8483aSYuri Pankov	cti_report "PASS: the file size($size) is 50000, it is right"
80*96c8483aSYuri Pankovfi
81*96c8483aSYuri Pankov
82*96c8483aSYuri Pankov
83*96c8483aSYuri Pankov# remove file
84*96c8483aSYuri Pankovcmd="rm $TMNT/file50000"
85*96c8483aSYuri Pankovcti_execute_cmd $cmd
86*96c8483aSYuri Pankovif [[ $? != 0 ]]; then
87*96c8483aSYuri Pankov	cti_fail "FAIL: failed to rm the file50000 file"
88*96c8483aSYuri Pankov	return
89*96c8483aSYuri Pankovelse
90*96c8483aSYuri Pankov	cti_report "PASS: rm the file50000 file successfully"
91*96c8483aSYuri Pankovfi
92*96c8483aSYuri Pankov
93*96c8483aSYuri Pankovif [[  -f "$TMNT/file50000" ]]; then
94*96c8483aSYuri Pankov	cti_fail "FAIL: the file50000 should not exist, but it exists"
95*96c8483aSYuri Pankov	return
96*96c8483aSYuri Pankovelse
97*96c8483aSYuri Pankov	cti_report "PASS: the file50000 exists, it is right"
98*96c8483aSYuri Pankovfi
99*96c8483aSYuri Pankov
100*96c8483aSYuri Pankovsmbmount_clean $TMNT
101*96c8483aSYuri Pankovcti_pass "${tc_id}: PASS"
102