From 0666fc3caae8e2db660d781e43bee2258bf06a00 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Sat, 22 Sep 2012 16:15:48 +0300 Subject: Introduce output formatting language * configure.ac: Check for lex and yacc. * lib/diag.c: New file (moved from ../src with edits) * lib/forlan.c: New file. * lib/forlan.h: New file. * lib/forlangrm.y: New file. * lib/forlanlex.l: New file. * lib/.gitignore: Add new files. * lib/Makefile.am: Add new file. * lib/libeclat.h: Add diagnostics-related stuff. * src/Makefile.am (eclat_SOURCES): Remove diag.c * src/cmdline.opt (set_program_name): Move to ../lib/diag.c * src/diag.c: Remove (see above). * src/config.c: Reflect changes to the diagnostics subsystem. * src/eclat.c: Likewise. * src/eclat.h: Remove diagnostics-related stuff. It lives in libeclat.h from now on. * src/error.c: Remove. * tests/forlan01.at: New testcase. * tests/testsuite.at: Include forlan01.at * tests/tforlan.c: New file. * tests/.gitignore: Add new files. * tests/Makefile.am: Add new files. --- tests/forlan01.at | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 tests/forlan01.at (limited to 'tests/forlan01.at') diff --git a/tests/forlan01.at b/tests/forlan01.at new file mode 100644 index 0000000..cf826e9 --- /dev/null +++ b/tests/forlan01.at @@ -0,0 +1,77 @@ +# This file is part of Eclat -*- Autotest -*- +# Copyright (C) 2012 Sergey Poznyakoff +# +# Eclat is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# Eclat is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Eclat. If not, see . + +AT_SETUP([dump]) +AT_KEYWORDS([forlan forlan01]) + +AT_DATA([input],[// test format for DescribeTags +if (.DescribeTagsResponse) { + if (.DescribeTagsResponse.tagSet.item.resourceId[[i-deadbeef]] && + parent(last).key[[hostname]]) + print(parent(last).value); +} else if (.Response.Errors) + error(.Response.Errors.Error.Message); +else + dump(); +]) + +AT_CHECK([tforlan -D input], +[0], +[0001: COND +0002: NODE +0003: COMP ABS +0004: LIT: "DescribeTagsResponse" +0005: IFTRUE 0001 +0006: COND +0007: AND +0008: NODE +0009: COMP ABS +0010: LIT: "DescribeTagsResponse" +0011: LIT: "tagSet" +0012: LIT: "item" +0013: TEST: resourceId[[i-deadbeef]] +0014: NODE +0015: COMP +0016: CALL: parent +0017: LAST +0018: TEST: key[[hostname]] +0019: IFTRUE 0006 +0020: CALL: print +0021: COMP +0022: CALL: parent +0023: LAST +0024: LIT: "value" +0025: IFFALSE 0006 +0026: IFFALSE 0001 +0027: COND +0028: NODE +0029: COMP ABS +0030: LIT: "Response" +0031: LIT: "Errors" +0032: IFTRUE 0027 +0033: CALL: error +0034: COMP ABS +0035: LIT: "Response" +0036: LIT: "Errors" +0037: LIT: "Error" +0038: LIT: "Message" +0039: IFFALSE 0027 +0040: CALL: dump +]) + +AT_CLEANUP + + -- cgit v1.2.1