2013-12-29 04:53:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Glyptodon LLC
|
2013-10-02 01:12:15 +00:00
|
|
|
*
|
2013-12-29 04:53:12 +00:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2013-10-02 01:12:15 +00:00
|
|
|
*
|
2013-12-29 04:53:12 +00:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2013-10-02 01:12:15 +00:00
|
|
|
*
|
2013-12-29 04:53:12 +00:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "suite.h"
|
2013-10-02 01:12:15 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2014-01-01 22:44:28 +00:00
|
|
|
#include <unistd.h>
|
2013-10-02 01:12:15 +00:00
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include <CUnit/Basic.h>
|
2013-10-02 01:33:50 +00:00
|
|
|
#include <guacamole/instruction.h>
|
2013-10-02 01:12:15 +00:00
|
|
|
|
|
|
|
void test_instruction_parse() {
|
2013-10-02 01:33:50 +00:00
|
|
|
|
|
|
|
/* Allocate instruction space */
|
|
|
|
guac_instruction* instruction = guac_instruction_alloc();
|
|
|
|
CU_ASSERT_PTR_NOT_NULL_FATAL(instruction);
|
|
|
|
|
|
|
|
/* Instruction input */
|
|
|
|
char buffer[] = "4.test,8.testdata,5.zxcvb,13.guacamoletest;XXXXXXXXXXXXXXXXXX";
|
|
|
|
char* current = buffer;
|
|
|
|
|
2013-10-02 03:58:15 +00:00
|
|
|
/* While data remains */
|
|
|
|
int remaining = sizeof(buffer)-1;
|
|
|
|
while (remaining > 18) {
|
|
|
|
|
|
|
|
/* Parse more data */
|
|
|
|
int parsed = guac_instruction_append(instruction, current, remaining);
|
|
|
|
if (parsed == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
current += parsed;
|
|
|
|
remaining -= parsed;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
CU_ASSERT_EQUAL(remaining, 18);
|
2013-10-02 01:33:50 +00:00
|
|
|
CU_ASSERT_EQUAL(instruction->state, GUAC_INSTRUCTION_PARSE_COMPLETE);
|
|
|
|
|
|
|
|
/* Parse is complete - no more data should be read */
|
|
|
|
CU_ASSERT_EQUAL(guac_instruction_append(instruction, current, 18), 0);
|
|
|
|
CU_ASSERT_EQUAL(instruction->state, GUAC_INSTRUCTION_PARSE_COMPLETE);
|
|
|
|
|
|
|
|
/* Validate resulting structure */
|
|
|
|
CU_ASSERT_EQUAL(instruction->argc, 3);
|
|
|
|
CU_ASSERT_PTR_NOT_NULL_FATAL(instruction->opcode);
|
|
|
|
CU_ASSERT_PTR_NOT_NULL_FATAL(instruction->argv[0]);
|
|
|
|
CU_ASSERT_PTR_NOT_NULL_FATAL(instruction->argv[1]);
|
|
|
|
CU_ASSERT_PTR_NOT_NULL_FATAL(instruction->argv[2]);
|
|
|
|
|
|
|
|
/* Validate resulting content */
|
|
|
|
CU_ASSERT_STRING_EQUAL(instruction->opcode, "test");
|
|
|
|
CU_ASSERT_STRING_EQUAL(instruction->argv[0], "testdata");
|
|
|
|
CU_ASSERT_STRING_EQUAL(instruction->argv[1], "zxcvb");
|
|
|
|
CU_ASSERT_STRING_EQUAL(instruction->argv[2], "guacamoletest");
|
|
|
|
|
2013-10-02 01:12:15 +00:00
|
|
|
}
|
|
|
|
|