1#!/bin/ksh -p
2#
3# This file and its contents are supplied under the terms of the
4# Common Development and Distribution License ("CDDL"), version 1.0.
5# You may only use this file in accordance with the terms of version
6# 1.0 of the CDDL.
7#
8# A full copy of the text of the CDDL should have accompanied this
9# source.  A copy of the CDDL is also available via the Internet at
10# http://www.illumos.org/license/CDDL.
11#
12
13#
14# Copyright (c) 2016 by Delphix. All rights reserved.
15#
16
17verify_runnable "global"
18
19. $STF_SUITE/tests/functional/channel_program/channel_common.kshlib
20
21#
22# DESCRIPTION:
23#	Try returning various lua values that should be converted
24#       to nvlists. Also, try to pass them to error().
25#
26
27verify_runnable "global"
28
29set -A args "" \
30	"nil" \
31	"true" \
32	"1" \
33	"\"test\"" \
34	"{}" \
35	"{val=0}" \
36	"{{1, {2, 3}, {val1={val2=true}}}, {test=\"yes\"}}" \
37	"EINVAL"
38
39log_assert "Returning valid lua constructs works."
40
41typeset -i i=0
42while (( i < ${#args[*]} )); do
43	log_note "running program: return ${args[i]}"
44	log_must_program $TESTPOOL - <<-EOF
45		return ${args[i]}
46	EOF
47	((i = i + 1))
48done
49
50typeset -i i=0
51while (( i < ${#args[*]} )); do
52	log_note "running program: error(${args[i]})"
53	log_mustnot_checkerror_program "in function 'error'" $TESTPOOL - <<-EOF
54		error(${args[i]})
55	EOF
56	((i = i + 1))
57done
58
59log_pass "Returning valid lua constructs works."
60