2005-10-24 15:26:25 +00:00
/** \file fish_tests.c
2012-11-18 10:23:22 +00:00
Various bug and feature tests . Compiled and run by make test .
2005-09-20 13:26:39 +00:00
*/
# include "config.h"
2006-02-28 13:17:16 +00:00
2005-09-20 13:26:39 +00:00
# include <stdlib.h>
# include <stdio.h>
# include <wchar.h>
# include <string.h>
# include <unistd.h>
# include <errno.h>
# include <unistd.h>
# include <termios.h>
# include <sys/types.h>
# include <sys/stat.h>
2012-03-05 16:27:31 +00:00
# include <sys/wait.h>
2005-09-20 13:26:39 +00:00
# include <fcntl.h>
2012-01-27 19:43:45 +00:00
# include <stdarg.h>
2012-03-07 08:54:01 +00:00
# include <iostream>
# include <string>
# include <sstream>
2012-01-27 19:43:45 +00:00
# include <algorithm>
2012-03-07 08:54:01 +00:00
# include <iterator>
2005-09-20 13:26:39 +00:00
# ifdef HAVE_GETOPT_H
# include <getopt.h>
# endif
# include <signal.h>
# include <locale.h>
# include <dirent.h>
2007-09-23 20:59:18 +00:00
# include <time.h>
2005-09-20 13:26:39 +00:00
2006-02-28 13:17:16 +00:00
# include "fallback.h"
2005-09-20 13:26:39 +00:00
# include "util.h"
2006-02-28 13:17:16 +00:00
2005-09-20 13:26:39 +00:00
# include "common.h"
# include "proc.h"
# include "reader.h"
# include "builtin.h"
# include "function.h"
2012-01-27 19:43:45 +00:00
# include "autoload.h"
2005-09-20 13:26:39 +00:00
# include "complete.h"
# include "wutil.h"
# include "env.h"
# include "expand.h"
# include "parser.h"
# include "tokenizer.h"
2005-10-27 12:20:03 +00:00
# include "output.h"
# include "exec.h"
# include "event.h"
2007-05-10 19:11:28 +00:00
# include "path.h"
2012-02-06 00:42:24 +00:00
# include "history.h"
2012-02-19 07:26:39 +00:00
# include "highlight.h"
2012-03-01 01:55:50 +00:00
# include "iothread.h"
# include "postfork.h"
# include "signal.h"
2013-06-09 21:21:24 +00:00
# include "parse_tree.h"
2013-07-17 08:35:30 +00:00
# include "parse_util.h"
2014-01-20 00:41:26 +00:00
# include "pager.h"
2012-07-06 21:34:53 +00:00
2013-10-12 18:32:34 +00:00
static const char * const * s_arguments ;
2013-12-08 21:41:12 +00:00
static int s_test_run_count = 0 ;
2013-10-12 18:32:34 +00:00
/* Indicate if we should test the given function. Either we test everything (all arguments) or we run only tests that have a prefix in s_arguments */
static bool should_test_function ( const char * func_name )
{
/* No args, test everything */
2013-12-08 21:41:12 +00:00
bool result = false ;
2013-10-12 18:32:34 +00:00
if ( ! s_arguments | | ! s_arguments [ 0 ] )
{
2013-12-08 21:41:12 +00:00
result = true ;
}
else
{
for ( size_t i = 0 ; s_arguments [ i ] ! = NULL ; i + + )
2013-10-12 18:32:34 +00:00
{
2013-12-08 21:41:12 +00:00
if ( ! strncmp ( func_name , s_arguments [ i ] , strlen ( s_arguments [ i ] ) ) )
{
/* Prefix match */
result = true ;
break ;
}
2013-10-12 18:32:34 +00:00
}
}
2013-12-08 21:41:12 +00:00
if ( result )
s_test_run_count + + ;
return result ;
2013-10-12 18:32:34 +00:00
}
2007-09-23 20:59:18 +00:00
/**
The number of tests to run
*/
2013-11-25 06:57:49 +00:00
# define ESCAPE_TEST_COUNT 100000
2007-09-23 20:59:18 +00:00
/**
The average length of strings to unescape
*/
# define ESCAPE_TEST_LENGTH 100
/**
The higest character number of character to try and escape
*/
# define ESCAPE_TEST_CHAR 4000
2005-10-24 15:26:25 +00:00
/**
Number of laps to run performance testing loop
*/
2005-09-20 13:26:39 +00:00
# define LAPS 50
2006-06-20 00:50:10 +00:00
/**
The result of one of the test passes
*/
# define NUM_ANS L"-7 99999999 1234567 deadbeef DEADBEEFDEADBEEF"
2005-10-24 15:26:25 +00:00
/**
Number of encountered errors
*/
2005-09-20 13:26:39 +00:00
static int err_count = 0 ;
2005-10-24 15:26:25 +00:00
/**
Print formatted output
*/
2012-11-19 00:30:30 +00:00
static void say ( const wchar_t * blah , . . . )
2005-09-20 13:26:39 +00:00
{
2012-11-19 00:30:30 +00:00
va_list va ;
va_start ( va , blah ) ;
vwprintf ( blah , va ) ;
va_end ( va ) ;
wprintf ( L " \n " ) ;
2005-09-20 13:26:39 +00:00
}
2005-10-24 15:26:25 +00:00
/**
Print formatted error string
*/
2012-11-19 00:30:30 +00:00
static void err ( const wchar_t * blah , . . . )
2005-09-20 13:26:39 +00:00
{
2012-11-19 00:30:30 +00:00
va_list va ;
va_start ( va , blah ) ;
err_count + + ;
wprintf ( L " Error: " ) ;
vwprintf ( blah , va ) ;
va_end ( va ) ;
wprintf ( L " \n " ) ;
2005-09-20 13:26:39 +00:00
}
2014-01-24 02:19:52 +00:00
# define do_test(e) do { if (! (e)) err(L"Test failed on line %lu: %s", __LINE__, #e); } while (0)
2013-11-25 06:57:49 +00:00
/* Test sane escapes */
static void test_unescape_sane ( )
{
2014-01-15 09:40:40 +00:00
const struct test_t
{
const wchar_t * input ;
const wchar_t * expected ;
} tests [ ] =
2013-11-25 06:57:49 +00:00
{
{ L " abcd " , L " abcd " } ,
{ L " 'abcd' " , L " abcd " } ,
{ L " 'abcd \\ n' " , L " abcd \\ n " } ,
{ L " \" abcd \\ n \" " , L " abcd \\ n " } ,
{ L " \" abcd \\ n \" " , L " abcd \\ n " } ,
{ L " \\ 143 " , L " c " } ,
{ L " ' \\ 143' " , L " \\ 143 " } ,
{ L " \\ n " , L " \n " } // \n normally becomes newline
} ;
wcstring output ;
for ( size_t i = 0 ; i < sizeof tests / sizeof * tests ; i + + )
{
bool ret = unescape_string ( tests [ i ] . input , & output , UNESCAPE_DEFAULT ) ;
if ( ! ret )
{
err ( L " Failed to unescape '%ls' \n " , tests [ i ] . input ) ;
}
else if ( output ! = tests [ i ] . expected )
{
err ( L " In unescaping '%ls', expected '%ls' but got '%ls' \n " , tests [ i ] . input , tests [ i ] . expected , output . c_str ( ) ) ;
}
}
2013-11-26 18:52:03 +00:00
// test for overflow
if ( unescape_string ( L " echo \\ UFFFFFF " , & output , UNESCAPE_DEFAULT ) )
{
err ( L " Should not have been able to unescape \\ UFFFFFF \n " ) ;
}
if ( unescape_string ( L " echo \\ U110000 " , & output , UNESCAPE_DEFAULT ) )
{
err ( L " Should not have been able to unescape \\ U110000 \n " ) ;
}
if ( ! unescape_string ( L " echo \\ U10FFFF " , & output , UNESCAPE_DEFAULT ) )
{
err ( L " Should have been able to unescape \\ U10FFFF \n " ) ;
}
2013-11-25 06:57:49 +00:00
}
2007-09-23 20:59:18 +00:00
/**
Test the escaping / unescaping code by escaping / unescaping random
strings and verifying that the original string comes back .
*/
2012-11-18 10:23:22 +00:00
2013-11-25 06:57:49 +00:00
static void test_escape_crazy ( )
{
2012-11-19 00:30:30 +00:00
say ( L " Testing escaping and unescaping " ) ;
2013-11-25 06:57:49 +00:00
wcstring random_string ;
wcstring escaped_string ;
wcstring unescaped_string ;
for ( size_t i = 0 ; i < ESCAPE_TEST_COUNT ; i + + )
2012-11-18 10:23:22 +00:00
{
2013-11-25 06:57:49 +00:00
random_string . clear ( ) ;
2012-11-19 00:30:30 +00:00
while ( rand ( ) % ESCAPE_TEST_LENGTH )
{
2013-11-25 06:57:49 +00:00
random_string . push_back ( ( rand ( ) % ESCAPE_TEST_CHAR ) + 1 ) ;
2012-11-19 00:30:30 +00:00
}
2012-11-18 10:23:22 +00:00
2013-11-25 06:57:49 +00:00
escaped_string = escape_string ( random_string , ESCAPE_ALL ) ;
bool unescaped_success = unescape_string ( escaped_string , & unescaped_string , UNESCAPE_DEFAULT ) ;
2012-11-18 10:23:22 +00:00
2013-11-25 06:57:49 +00:00
if ( ! unescaped_success )
2012-11-19 00:30:30 +00:00
{
2013-11-25 06:57:49 +00:00
err ( L " Failed to unescape string <%ls> " , escaped_string . c_str ( ) ) ;
}
else if ( unescaped_string ! = random_string )
{
err ( L " Escaped and then unescaped string '%ls', but got back a different string '%ls' " , random_string . c_str ( ) , unescaped_string . c_str ( ) ) ;
2012-11-19 00:30:30 +00:00
}
}
2012-02-29 19:27:14 +00:00
}
2007-09-23 20:59:18 +00:00
2012-11-19 00:30:30 +00:00
static void test_format ( void )
{
say ( L " Testing formatting functions " ) ;
struct
{
unsigned long long val ;
const char * expected ;
} tests [ ] =
{
2012-02-29 19:27:14 +00:00
{ 0 , " empty " } ,
{ 1 , " 1B " } ,
{ 2 , " 2B " } ,
{ 1024 , " 1kB " } ,
{ 1870 , " 1.8kB " } ,
{ 4322911 , " 4.1MB " }
} ;
size_t i ;
2012-11-19 00:30:30 +00:00
for ( i = 0 ; i < sizeof tests / sizeof * tests ; i + + )
{
2012-02-29 19:27:14 +00:00
char buff [ 128 ] ;
format_size_safe ( buff , tests [ i ] . val ) ;
2014-01-24 02:19:52 +00:00
do_test ( ! strcmp ( buff , tests [ i ] . expected ) ) ;
2012-02-29 19:27:14 +00:00
}
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
for ( int j = - 129 ; j < = 129 ; j + + )
{
2012-02-29 19:27:14 +00:00
char buff1 [ 128 ] , buff2 [ 128 ] ;
2012-03-03 23:20:30 +00:00
format_long_safe ( buff1 , j ) ;
2012-02-29 19:27:14 +00:00
sprintf ( buff2 , " %d " , j ) ;
2014-01-24 02:19:52 +00:00
do_test ( ! strcmp ( buff1 , buff2 ) ) ;
2012-03-03 23:20:30 +00:00
}
2012-11-18 10:23:22 +00:00
2012-03-03 23:20:30 +00:00
long q = LONG_MIN ;
char buff1 [ 128 ] , buff2 [ 128 ] ;
format_long_safe ( buff1 , q ) ;
sprintf ( buff2 , " %ld " , q ) ;
2014-01-24 02:19:52 +00:00
do_test ( ! strcmp ( buff1 , buff2 ) ) ;
2012-11-18 10:23:22 +00:00
2007-09-23 20:59:18 +00:00
}
/**
Test wide / narrow conversion by creating random strings and
verifying that the original string comes back thorugh double
conversion .
*/
static void test_convert ( )
{
2012-11-19 00:30:30 +00:00
/* char o[] =
{
- 17 , - 128 , - 121 , - 68 , 0
}
;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
wchar_t * w = str2wcs ( o ) ;
char * n = wcs2str ( w ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
int i ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
for ( i = 0 ; o [ i ] ; i + + )
{
bitprint ( o [ i ] ) ; ;
//wprintf(L"%d ", o[i]);
}
wprintf ( L " \n " ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
for ( i = 0 ; w [ i ] ; i + + )
{
wbitprint ( w [ i ] ) ; ;
//wprintf(L"%d ", w[i]);
}
wprintf ( L " \n " ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
for ( i = 0 ; n [ i ] ; i + + )
{
bitprint ( n [ i ] ) ; ;
//wprintf(L"%d ", n[i]);
}
wprintf ( L " \n " ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
return ;
*/
2007-09-23 20:59:18 +00:00
2012-11-19 00:30:30 +00:00
int i ;
std : : vector < char > sb ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
say ( L " Testing wide/narrow string conversion " ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
for ( i = 0 ; i < ESCAPE_TEST_COUNT ; i + + )
{
const char * o , * n ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
char c ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
sb . clear ( ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
while ( rand ( ) % ESCAPE_TEST_LENGTH )
{
c = rand ( ) ;
2012-03-04 06:48:21 +00:00
sb . push_back ( c ) ;
2012-11-19 00:30:30 +00:00
}
c = 0 ;
2012-03-04 06:48:21 +00:00
sb . push_back ( c ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
o = & sb . at ( 0 ) ;
2012-12-19 21:31:06 +00:00
const wcstring w = str2wcstring ( o ) ;
n = wcs2str ( w . c_str ( ) ) ;
2012-11-18 10:23:22 +00:00
2012-12-19 21:31:06 +00:00
if ( ! o | | ! n )
2012-11-19 00:30:30 +00:00
{
2012-12-19 21:31:06 +00:00
err ( L " Line %d - Conversion cycle of string %s produced null pointer on %s " , __LINE__ , o , L " wcs2str " ) ;
2012-11-19 00:30:30 +00:00
}
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
if ( strcmp ( o , n ) )
{
err ( L " Line %d - %d: Conversion cycle of string %s produced different string %s " , __LINE__ , i , o , n ) ;
}
free ( ( void * ) n ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
}
2012-12-19 21:31:06 +00:00
}
/* Verify correct behavior with embedded nulls */
static void test_convert_nulls ( void )
{
say ( L " Testing embedded nulls in string conversion " ) ;
const wchar_t in [ ] = L " AAA \0 BBB " ;
const size_t in_len = ( sizeof in / sizeof * in ) - 1 ;
const wcstring in_str = wcstring ( in , in_len ) ;
std : : string out_str = wcs2string ( in_str ) ;
if ( out_str . size ( ) ! = in_len )
{
err ( L " Embedded nulls mishandled in wcs2string " ) ;
}
for ( size_t i = 0 ; i < in_len ; i + + )
{
if ( in [ i ] ! = out_str . at ( i ) )
{
err ( L " Embedded nulls mishandled in wcs2string at index %lu " , ( unsigned long ) i ) ;
}
}
wcstring out_wstr = str2wcstring ( out_str ) ;
if ( out_wstr . size ( ) ! = in_len )
{
err ( L " Embedded nulls mishandled in str2wcstring " ) ;
}
for ( size_t i = 0 ; i < in_len ; i + + )
{
if ( in [ i ] ! = out_wstr . at ( i ) )
{
err ( L " Embedded nulls mishandled in str2wcstring at index %lu " , ( unsigned long ) i ) ;
}
}
2007-09-23 20:59:18 +00:00
}
2005-10-24 15:26:25 +00:00
/**
Test the tokenizer
*/
2005-09-20 13:26:39 +00:00
static void test_tok ( )
{
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
say ( L " Testing tokenizer " ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
say ( L " Testing invalid input " ) ;
2012-11-22 01:48:35 +00:00
tokenizer_t t ( NULL , 0 ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
if ( tok_last_type ( & t ) ! = TOK_ERROR )
{
err ( L " Invalid input to tokenizer was undetected " ) ;
}
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
say ( L " Testing use of broken tokenizer " ) ;
if ( ! tok_has_next ( & t ) )
{
err ( L " tok_has_next() should return 1 once on broken tokenizer " ) ;
}
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
tok_next ( & t ) ;
if ( tok_last_type ( & t ) ! = TOK_ERROR )
2012-11-18 10:23:22 +00:00
{
2012-11-19 00:30:30 +00:00
err ( L " Invalid input to tokenizer was undetected " ) ;
2012-11-18 10:23:22 +00:00
}
2012-11-19 00:30:30 +00:00
/*
This should crash if there is a bug . No reliable way to detect otherwise .
*/
say ( L " Test destruction of broken tokenizer " ) ;
2012-11-18 10:23:22 +00:00
{
2012-11-19 00:30:30 +00:00
const wchar_t * str = L " string <redirection 2>&1 'nested \" quoted \" '(string containing subshells ){and,brackets}$as[$well (as variable arrays)] not_a_redirect^ ^ ^^is_a_redirect " ;
const int types [ ] =
{
TOK_STRING , TOK_REDIRECT_IN , TOK_STRING , TOK_REDIRECT_FD , TOK_STRING , TOK_STRING , TOK_STRING , TOK_REDIRECT_OUT , TOK_REDIRECT_APPEND , TOK_STRING , TOK_END
2012-11-22 01:48:35 +00:00
} ;
2012-11-19 00:30:30 +00:00
say ( L " Test correct tokenization " ) ;
2012-11-23 19:12:22 +00:00
2012-11-22 01:48:35 +00:00
tokenizer_t t ( str , 0 ) ;
2012-11-23 19:12:22 +00:00
for ( size_t i = 0 ; i < sizeof types / sizeof * types ; i + + , tok_next ( & t ) )
{
2012-11-19 00:30:30 +00:00
if ( types [ i ] ! = tok_last_type ( & t ) )
{
err ( L " Tokenization error: " ) ;
wprintf ( L " Token number %d of string \n '%ls' \n , expected token type %ls, got token '%ls' of type %ls \n " ,
i + 1 ,
str ,
tok_get_desc ( types [ i ] ) ,
tok_last ( & t ) ,
tok_get_desc ( tok_last_type ( & t ) ) ) ;
}
}
2012-11-18 10:23:22 +00:00
}
2014-01-15 09:40:40 +00:00
2013-10-13 23:58:40 +00:00
/* Test redirection_type_for_string */
if ( redirection_type_for_string ( L " < " ) ! = TOK_REDIRECT_IN ) err ( L " redirection_type_for_string failed on line %ld " , ( long ) __LINE__ ) ;
if ( redirection_type_for_string ( L " ^ " ) ! = TOK_REDIRECT_OUT ) err ( L " redirection_type_for_string failed on line %ld " , ( long ) __LINE__ ) ;
if ( redirection_type_for_string ( L " > " ) ! = TOK_REDIRECT_OUT ) err ( L " redirection_type_for_string failed on line %ld " , ( long ) __LINE__ ) ;
if ( redirection_type_for_string ( L " 2> " ) ! = TOK_REDIRECT_OUT ) err ( L " redirection_type_for_string failed on line %ld " , ( long ) __LINE__ ) ;
if ( redirection_type_for_string ( L " >> " ) ! = TOK_REDIRECT_APPEND ) err ( L " redirection_type_for_string failed on line %ld " , ( long ) __LINE__ ) ;
if ( redirection_type_for_string ( L " 2>> " ) ! = TOK_REDIRECT_APPEND ) err ( L " redirection_type_for_string failed on line %ld " , ( long ) __LINE__ ) ;
if ( redirection_type_for_string ( L " 2>? " ) ! = TOK_REDIRECT_NOCLOB ) err ( L " redirection_type_for_string failed on line %ld " , ( long ) __LINE__ ) ;
if ( redirection_type_for_string ( L " 9999999999999999>? " ) ! = TOK_NONE ) err ( L " redirection_type_for_string failed on line %ld " , ( long ) __LINE__ ) ;
if ( redirection_type_for_string ( L " 2>&3 " ) ! = TOK_REDIRECT_FD ) err ( L " redirection_type_for_string failed on line %ld " , ( long ) __LINE__ ) ;
if ( redirection_type_for_string ( L " 2>| " ) ! = TOK_NONE ) err ( L " redirection_type_for_string failed on line %ld " , ( long ) __LINE__ ) ;
2012-03-01 01:55:50 +00:00
}
2005-09-20 13:26:39 +00:00
2013-11-28 00:04:12 +00:00
// Little function that runs in the main thread
static int test_iothread_main_call ( int * addr )
{
* addr + = 1 ;
return * addr ;
}
// Little function that runs in a background thread, bouncing to the main
static int test_iothread_thread_call ( int * addr )
{
int before = * addr ;
iothread_perform_on_main ( test_iothread_main_call , addr ) ;
int after = * addr ;
// Must have incremented it at least once
if ( before > = after )
{
err ( L " Failed to increment from background thread " ) ;
}
return after ;
}
static void test_iothread ( void )
{
say ( L " Testing iothreads " ) ;
int * int_ptr = new int ( 0 ) ;
int iterations = 1000 ;
for ( int i = 0 ; i < iterations ; i + + )
{
iothread_perform ( test_iothread_thread_call , ( void ( * ) ( int * , int ) ) NULL , int_ptr ) ;
}
// Now wait until we're done
iothread_drain_all ( ) ;
// Should have incremented it once per thread
if ( * int_ptr ! = iterations )
{
say ( L " Expected int to be %d, but instead it was %d " , iterations , * int_ptr ) ;
}
delete int_ptr ;
}
2005-10-24 15:26:25 +00:00
/**
Test the parser
*/
2005-09-20 13:26:39 +00:00
static void test_parser ( )
{
2012-11-19 00:30:30 +00:00
say ( L " Testing parser " ) ;
parser_t parser ( PARSER_TYPE_GENERAL , true ) ;
say ( L " Testing block nesting " ) ;
2013-12-17 01:18:32 +00:00
if ( ! parse_util_detect_errors ( L " if; end " ) )
2012-11-19 00:30:30 +00:00
{
err ( L " Incomplete if statement undetected " ) ;
}
2013-12-17 01:18:32 +00:00
if ( ! parse_util_detect_errors ( L " if test; echo " ) )
2012-11-19 00:30:30 +00:00
{
err ( L " Missing end undetected " ) ;
}
2013-12-17 01:18:32 +00:00
if ( ! parse_util_detect_errors ( L " if test; end; end " ) )
2012-11-19 00:30:30 +00:00
{
err ( L " Unbalanced end undetected " ) ;
}
say ( L " Testing detection of invalid use of builtin commands " ) ;
2013-12-17 01:18:32 +00:00
if ( ! parse_util_detect_errors ( L " case foo " ) )
2012-11-19 00:30:30 +00:00
{
err ( L " 'case' command outside of block context undetected " ) ;
}
2013-12-17 01:18:32 +00:00
if ( ! parse_util_detect_errors ( L " switch ggg; if true; case foo;end;end " ) )
2012-11-19 00:30:30 +00:00
{
err ( L " 'case' command outside of switch block context undetected " ) ;
}
2013-12-17 01:18:32 +00:00
if ( ! parse_util_detect_errors ( L " else " ) )
2012-11-19 00:30:30 +00:00
{
err ( L " 'else' command outside of conditional block context undetected " ) ;
}
2013-12-17 01:18:32 +00:00
if ( ! parse_util_detect_errors ( L " else if " ) )
2012-11-19 00:30:30 +00:00
{
err ( L " 'else if' command outside of conditional block context undetected " ) ;
}
2013-12-17 01:18:32 +00:00
if ( ! parse_util_detect_errors ( L " if false; else if; end " ) )
2012-11-19 00:30:30 +00:00
{
err ( L " 'else if' missing command undetected " ) ;
}
2013-12-17 01:18:32 +00:00
if ( ! parse_util_detect_errors ( L " break " ) )
2012-11-19 00:30:30 +00:00
{
err ( L " 'break' command outside of loop block context undetected " ) ;
}
2014-01-15 09:40:40 +00:00
2013-12-17 01:18:32 +00:00
if ( parse_util_detect_errors ( L " break --help " ) )
2013-12-13 02:18:07 +00:00
{
err ( L " 'break --help' incorrectly marked as error " ) ;
}
2014-01-15 09:40:40 +00:00
2013-12-17 01:18:32 +00:00
if ( ! parse_util_detect_errors ( L " while false ; function foo ; break ; end ; end " ) )
2013-12-13 02:18:07 +00:00
{
err ( L " 'break' command inside function allowed to break from loop outside it " ) ;
}
2014-01-15 09:40:40 +00:00
2013-12-17 01:18:32 +00:00
if ( ! parse_util_detect_errors ( L " exec ls|less " ) | | ! parse_util_detect_errors ( L " echo|return " ) )
2012-11-19 00:30:30 +00:00
{
err ( L " Invalid pipe command undetected " ) ;
}
2014-01-15 09:40:40 +00:00
2013-12-17 01:18:32 +00:00
if ( parse_util_detect_errors ( L " for i in foo ; switch $i ; case blah ; break; end; end " ) )
2013-12-13 02:18:07 +00:00
{
err ( L " 'break' command inside switch falsely reported as error " ) ;
}
2014-01-15 09:40:40 +00:00
2014-01-13 21:14:18 +00:00
if ( parse_util_detect_errors ( L " or cat | cat " ) | | parse_util_detect_errors ( L " and cat | cat " ) )
{
err ( L " boolean command at beginning of pipeline falsely reported as error " ) ;
}
2014-01-15 09:40:40 +00:00
2014-01-13 21:14:18 +00:00
if ( ! parse_util_detect_errors ( L " cat | and cat " ) )
{
err ( L " 'and' command in pipeline not reported as error " ) ;
}
2014-01-15 09:40:40 +00:00
2014-01-13 21:14:18 +00:00
if ( ! parse_util_detect_errors ( L " cat | exec " ) | | ! parse_util_detect_errors ( L " exec | cat " ) )
{
err ( L " 'exec' command in pipeline not reported as error " ) ;
}
2014-01-15 09:40:40 +00:00
2012-11-19 00:30:30 +00:00
say ( L " Testing basic evaluation " ) ;
2012-01-27 19:43:45 +00:00
#if 0
/* This fails now since the parser takes a wcstring&, and NULL converts to wchar_t * converts to wcstring which crashes (thanks C++) */
2012-11-19 00:30:30 +00:00
if ( ! parser . eval ( 0 , 0 , TOP ) )
{
err ( L " Null input when evaluating undetected " ) ;
}
2012-01-27 19:43:45 +00:00
# endif
2012-11-19 00:30:30 +00:00
if ( ! parser . eval ( L " ls " , io_chain_t ( ) , WHILE ) )
{
err ( L " Invalid block mode when evaluating undetected " ) ;
}
2014-01-15 09:40:40 +00:00
2014-01-01 23:29:56 +00:00
/* Ensure that we don't crash on infinite self recursion and mutual recursion. These must use the principal parser because we cannot yet execute jobs on other parsers (!) */
say ( L " Testing recursion detection " ) ;
parser_t : : principal_parser ( ) . eval ( L " function recursive ; recursive ; end ; recursive; " , io_chain_t ( ) , TOP ) ;
2014-01-13 06:39:12 +00:00
#if 0
/* This is disabled since it produces a long backtrace. We should find a way to either visually compress the backtrace, or disable error spewing */
2014-01-01 23:29:56 +00:00
parser_t : : principal_parser ( ) . eval ( L " function recursive1 ; recursive2 ; end ; function recursive2 ; recursive1 ; end ; recursive1; " , io_chain_t ( ) , TOP ) ;
# endif
2012-01-27 19:43:45 +00:00
}
2014-01-02 20:37:50 +00:00
/* Wait a while and then SIGINT the main thread */
struct test_cancellation_info_t
{
pthread_t thread ;
double delay ;
} ;
static int signal_main ( test_cancellation_info_t * info )
{
usleep ( info - > delay * 1E6 ) ;
pthread_kill ( info - > thread , SIGINT ) ;
return 0 ;
}
static void test_1_cancellation ( const wchar_t * src )
{
shared_ptr < io_buffer_t > out_buff ( io_buffer_t : : create ( false , STDOUT_FILENO ) ) ;
const io_chain_t io_chain ( out_buff ) ;
test_cancellation_info_t ctx = { pthread_self ( ) , 0.25 /* seconds */ } ;
iothread_perform ( signal_main , ( void ( * ) ( test_cancellation_info_t * , int ) ) NULL , & ctx ) ;
parser_t : : principal_parser ( ) . eval ( src , io_chain , TOP ) ;
out_buff - > read ( ) ;
if ( out_buff - > out_buffer_size ( ) ! = 0 )
{
err ( L " Expected 0 bytes in out_buff, but instead found %lu bytes \n " , out_buff - > out_buffer_size ( ) ) ;
}
iothread_drain_all ( ) ;
}
static void test_cancellation ( )
{
say ( L " Testing Ctrl-C cancellation. If this hangs, that's a bug! " ) ;
2014-01-15 09:40:40 +00:00
2014-01-02 20:37:50 +00:00
/* Enable fish's signal handling here. We need to make this interactive for fish to install its signal handlers */
proc_push_interactive ( 1 ) ;
signal_set_handlers ( ) ;
2014-01-15 09:40:40 +00:00
2014-01-02 20:37:50 +00:00
/* This tests that we can correctly ctrl-C out of certain loop constructs, and that nothing gets printed if we do */
2014-01-15 09:40:40 +00:00
2014-01-02 20:37:50 +00:00
/* Here the command substitution is an infinite loop. echo never even gets its argument, so when we cancel we expect no output */
test_1_cancellation ( L " echo (while true ; echo blah ; end) " ) ;
2014-01-15 09:40:40 +00:00
2014-01-02 20:37:50 +00:00
fprintf ( stderr , " . " ) ;
2014-01-15 09:40:40 +00:00
2014-01-02 20:37:50 +00:00
/* Nasty infinite loop that doesn't actually execute anything */
test_1_cancellation ( L " echo (while true ; end) (while true ; end) (while true ; end) " ) ;
fprintf ( stderr , " . " ) ;
2014-01-15 09:40:40 +00:00
2014-01-02 20:37:50 +00:00
test_1_cancellation ( L " while true ; end " ) ;
fprintf ( stderr , " . " ) ;
2014-01-15 09:40:40 +00:00
2014-01-13 06:39:12 +00:00
test_1_cancellation ( L " for i in (while true ; end) ; end " ) ;
2014-01-02 20:37:50 +00:00
fprintf ( stderr , " . " ) ;
fprintf ( stderr , " \n " ) ;
2014-01-15 09:40:40 +00:00
2014-01-02 20:37:50 +00:00
/* Restore signal handling */
proc_pop_interactive ( ) ;
signal_reset_handlers ( ) ;
2014-01-15 09:40:40 +00:00
2014-01-03 23:27:39 +00:00
/* Ensure that we don't think we should cancel */
reader_reset_interrupted ( ) ;
2014-01-02 20:37:50 +00:00
}
2013-12-08 21:41:12 +00:00
static void test_indents ( )
{
say ( L " Testing indents " ) ;
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
// Here are the components of our source and the indents we expect those to be
2014-01-15 09:40:40 +00:00
struct indent_component_t
{
2013-12-08 21:41:12 +00:00
const wchar_t * txt ;
int indent ;
} ;
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
const indent_component_t components1 [ ] =
{
{ L " if foo " , 0 } ,
{ L " end " , 0 } ,
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
const indent_component_t components2 [ ] =
{
{ L " if foo " , 0 } ,
{ L " " , 1 } , //trailing newline!
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
const indent_component_t components3 [ ] =
{
{ L " if foo " , 0 } ,
{ L " foo " , 1 } ,
{ L " end " , 0 } , //trailing newline!
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
const indent_component_t components4 [ ] =
{
{ L " if foo " , 0 } ,
{ L " if bar " , 1 } ,
{ L " end " , 1 } ,
{ L " end " , 0 } ,
{ L " " , 0 } ,
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
const indent_component_t components5 [ ] =
{
{ L " if foo " , 0 } ,
{ L " if bar " , 1 } ,
{ L " " , 2 } ,
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
const indent_component_t components6 [ ] =
{
{ L " begin " , 0 } ,
{ L " foo " , 1 } ,
{ L " " , 1 } ,
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
const indent_component_t components7 [ ] =
{
{ L " begin; end " , 0 } ,
{ L " foo " , 0 } ,
{ L " " , 0 } ,
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
const indent_component_t components8 [ ] =
{
{ L " if foo " , 0 } ,
{ L " if bar " , 1 } ,
{ L " baz " , 2 } ,
{ L " end " , 1 } ,
{ L " " , 1 } ,
{ NULL , - 1 }
} ;
const indent_component_t components9 [ ] =
{
{ L " switch foo " , 0 } ,
{ L " " , 1 } ,
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
const indent_component_t components10 [ ] =
{
{ L " switch foo " , 0 } ,
{ L " case bar " , 1 } ,
{ L " case baz " , 1 } ,
{ L " quux " , 2 } ,
{ L " " , 2 } ,
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-12-08 22:13:23 +00:00
const indent_component_t components11 [ ] =
{
{ L " switch foo " , 0 } ,
{ L " cas " , 1 } , //parse error indentation handling
{ NULL , - 1 }
} ;
2013-12-08 21:41:12 +00:00
2014-01-15 09:40:40 +00:00
2013-12-08 22:13:23 +00:00
const indent_component_t * tests [ ] = { components1 , components2 , components3 , components4 , components5 , components6 , components7 , components8 , components9 , components10 , components11 } ;
2013-12-08 21:41:12 +00:00
for ( size_t which = 0 ; which < sizeof tests / sizeof * tests ; which + + )
{
const indent_component_t * components = tests [ which ] ;
// Count how many we have
size_t component_count = 0 ;
while ( components [ component_count ] . txt ! = NULL )
{
component_count + + ;
}
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
// Generate the expected indents
wcstring text ;
std : : vector < int > expected_indents ;
for ( size_t i = 0 ; i < component_count ; i + + )
{
if ( i > 0 )
{
text . push_back ( L ' \n ' ) ;
expected_indents . push_back ( components [ i ] . indent ) ;
}
text . append ( components [ i ] . txt ) ;
expected_indents . resize ( text . size ( ) , components [ i ] . indent ) ;
}
2014-01-24 02:19:52 +00:00
do_test ( expected_indents . size ( ) = = text . size ( ) ) ;
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
// Compute the indents
std : : vector < int > indents = parse_util_compute_indents ( text ) ;
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
if ( expected_indents . size ( ) ! = indents . size ( ) )
{
err ( L " Indent vector has wrong size! Expected %lu, actual %lu " , expected_indents . size ( ) , indents . size ( ) ) ;
}
2014-01-24 02:19:52 +00:00
do_test ( expected_indents . size ( ) = = indents . size ( ) ) ;
2013-12-08 21:41:12 +00:00
for ( size_t i = 0 ; i < text . size ( ) ; i + + )
{
if ( expected_indents . at ( i ) ! = indents . at ( i ) )
{
err ( L " Wrong indent at index %lu in test #%lu (expected %d, actual %d): \n %ls \n " , i , which + 1 , expected_indents . at ( i ) , indents . at ( i ) , text . c_str ( ) ) ;
break ; //don't keep showing errors for the rest of the line
}
}
}
}
2013-07-17 08:35:30 +00:00
static void test_utils ( )
{
say ( L " Testing utils " ) ;
const wchar_t * a = L " echo (echo (echo hi " ;
2013-07-23 01:26:15 +00:00
2013-07-17 08:35:30 +00:00
const wchar_t * begin = NULL , * end = NULL ;
parse_util_cmdsubst_extent ( a , 0 , & begin , & end ) ;
2013-07-17 09:55:15 +00:00
if ( begin ! = a | | end ! = begin + wcslen ( begin ) ) err ( L " parse_util_cmdsubst_extent failed on line %ld " , ( long ) __LINE__ ) ;
2013-07-17 08:35:30 +00:00
parse_util_cmdsubst_extent ( a , 1 , & begin , & end ) ;
2013-07-17 09:55:15 +00:00
if ( begin ! = a | | end ! = begin + wcslen ( begin ) ) err ( L " parse_util_cmdsubst_extent failed on line %ld " , ( long ) __LINE__ ) ;
2013-07-17 08:35:30 +00:00
parse_util_cmdsubst_extent ( a , 2 , & begin , & end ) ;
2013-07-17 09:55:15 +00:00
if ( begin ! = a | | end ! = begin + wcslen ( begin ) ) err ( L " parse_util_cmdsubst_extent failed on line %ld " , ( long ) __LINE__ ) ;
2013-07-17 08:35:30 +00:00
parse_util_cmdsubst_extent ( a , 3 , & begin , & end ) ;
2013-07-17 09:55:15 +00:00
if ( begin ! = a | | end ! = begin + wcslen ( begin ) ) err ( L " parse_util_cmdsubst_extent failed on line %ld " , ( long ) __LINE__ ) ;
2013-07-23 01:26:15 +00:00
2013-07-17 08:35:30 +00:00
parse_util_cmdsubst_extent ( a , 8 , & begin , & end ) ;
if ( begin ! = a + wcslen ( L " echo ( " ) ) err ( L " parse_util_cmdsubst_extent failed on line %ld " , ( long ) __LINE__ ) ;
parse_util_cmdsubst_extent ( a , 17 , & begin , & end ) ;
if ( begin ! = a + wcslen ( L " echo (echo ( " ) ) err ( L " parse_util_cmdsubst_extent failed on line %ld " , ( long ) __LINE__ ) ;
}
2013-09-29 09:48:35 +00:00
static void test_escape_sequences ( void )
{
say ( L " Testing escape codes " ) ;
if ( escape_code_length ( L " " ) ! = 0 ) err ( L " test_escape_sequences failed on line %d \n " , __LINE__ ) ;
if ( escape_code_length ( L " abcd " ) ! = 0 ) err ( L " test_escape_sequences failed on line %d \n " , __LINE__ ) ;
if ( escape_code_length ( L " \x1b [2J " ) ! = 4 ) err ( L " test_escape_sequences failed on line %d \n " , __LINE__ ) ;
if ( escape_code_length ( L " \x1b [38;5;123mABC " ) ! = strlen ( " \x1b [38;5;123m " ) ) err ( L " test_escape_sequences failed on line %d \n " , __LINE__ ) ;
if ( escape_code_length ( L " \x1b @ " ) ! = 2 ) err ( L " test_escape_sequences failed on line %d \n " , __LINE__ ) ;
}
2012-11-19 00:30:30 +00:00
class lru_node_test_t : public lru_node_t
{
public :
2012-02-06 06:48:43 +00:00
lru_node_test_t ( const wcstring & tmp ) : lru_node_t ( tmp ) { }
} ;
2012-11-19 00:30:30 +00:00
class test_lru_t : public lru_cache_t < lru_node_test_t >
{
public :
2012-02-06 06:48:43 +00:00
test_lru_t ( ) : lru_cache_t < lru_node_test_t > ( 16 ) { }
2012-11-18 10:23:22 +00:00
2012-02-06 06:48:43 +00:00
std : : vector < lru_node_test_t * > evicted_nodes ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
virtual void node_was_evicted ( lru_node_test_t * node )
{
2014-01-24 02:19:52 +00:00
do_test ( find ( evicted_nodes . begin ( ) , evicted_nodes . end ( ) , node ) = = evicted_nodes . end ( ) ) ;
2012-01-27 19:43:45 +00:00
evicted_nodes . push_back ( node ) ;
}
} ;
2012-11-19 00:30:30 +00:00
static void test_lru ( void )
{
say ( L " Testing LRU cache " ) ;
2012-11-18 10:23:22 +00:00
2012-01-27 19:43:45 +00:00
test_lru_t cache ;
2012-02-06 06:48:43 +00:00
std : : vector < lru_node_test_t * > expected_evicted ;
2012-01-27 19:43:45 +00:00
size_t total_nodes = 20 ;
2012-11-19 00:30:30 +00:00
for ( size_t i = 0 ; i < total_nodes ; i + + )
{
2014-01-24 02:19:52 +00:00
do_test ( cache . size ( ) = = std : : min ( i , ( size_t ) 16 ) ) ;
2012-03-07 08:54:01 +00:00
lru_node_test_t * node = new lru_node_test_t ( to_string ( i ) ) ;
2012-01-27 19:43:45 +00:00
if ( i < 4 ) expected_evicted . push_back ( node ) ;
// Adding the node the first time should work, and subsequent times should fail
2014-01-24 02:19:52 +00:00
do_test ( cache . add_node ( node ) ) ;
do_test ( ! cache . add_node ( node ) ) ;
2012-01-27 19:43:45 +00:00
}
2014-01-24 02:19:52 +00:00
do_test ( cache . evicted_nodes = = expected_evicted ) ;
2012-01-27 19:43:45 +00:00
cache . evict_all_nodes ( ) ;
2014-01-24 02:19:52 +00:00
do_test ( cache . evicted_nodes . size ( ) = = total_nodes ) ;
2012-11-19 00:30:30 +00:00
while ( ! cache . evicted_nodes . empty ( ) )
{
2012-01-27 19:43:45 +00:00
lru_node_t * node = cache . evicted_nodes . back ( ) ;
cache . evicted_nodes . pop_back ( ) ;
delete node ;
}
2005-09-20 13:26:39 +00:00
}
2012-11-18 10:23:22 +00:00
2005-09-20 13:26:39 +00:00
/**
2005-12-07 15:57:17 +00:00
Perform parameter expansion and test if the output equals the zero - terminated parameter list supplied .
2005-09-20 13:26:39 +00:00
\ param in the string to expand
\ param flags the flags to send to expand_string
*/
2012-11-19 00:30:30 +00:00
static int expand_test ( const wchar_t * in , int flags , . . . )
2005-09-20 13:26:39 +00:00
{
2012-11-19 00:30:30 +00:00
std : : vector < completion_t > output ;
va_list va ;
size_t i = 0 ;
int res = 1 ;
wchar_t * arg ;
2014-01-15 09:40:40 +00:00
2012-11-19 00:30:30 +00:00
if ( expand_string ( in , output , flags ) )
{
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
}
2012-10-16 01:16:47 +00:00
#if 0
2014-01-03 23:27:39 +00:00
printf ( " input: %ls \n " , in ) ;
2012-10-16 01:16:47 +00:00
for ( size_t idx = 0 ; idx < output . size ( ) ; idx + + )
{
printf ( " %ls \n " , output . at ( idx ) . completion . c_str ( ) ) ;
}
# endif
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
va_start ( va , flags ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
while ( ( arg = va_arg ( va , wchar_t * ) ) ! = 0 )
2012-11-18 10:23:22 +00:00
{
2012-11-19 00:30:30 +00:00
if ( output . size ( ) = = i )
{
res = 0 ;
break ;
}
2012-11-18 10:23:22 +00:00
2012-02-06 00:42:24 +00:00
if ( output . at ( i ) . completion ! = arg )
2012-11-19 00:30:30 +00:00
{
res = 0 ;
break ;
}
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
i + + ;
}
va_end ( va ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
return res ;
2012-11-18 10:23:22 +00:00
2005-09-20 13:26:39 +00:00
}
2005-10-24 15:26:25 +00:00
/**
2005-12-07 15:57:17 +00:00
Test globbing and other parameter expansion
2005-10-24 15:26:25 +00:00
*/
2005-09-20 13:26:39 +00:00
static void test_expand ( )
{
2012-11-19 00:30:30 +00:00
say ( L " Testing parameter expansion " ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
if ( ! expand_test ( L " foo " , 0 , L " foo " , 0 ) )
{
err ( L " Strings do not expand to themselves " ) ;
}
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
if ( ! expand_test ( L " a{b,c,d}e " , 0 , L " abe " , L " ace " , L " ade " , 0 ) )
{
err ( L " Bracket expansion is broken " ) ;
}
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
if ( ! expand_test ( L " a* " , EXPAND_SKIP_WILDCARDS , L " a* " , 0 ) )
{
err ( L " Cannot skip wildcard expansion " ) ;
}
2012-11-18 10:23:22 +00:00
2012-10-16 01:16:47 +00:00
if ( system ( " mkdir -p /tmp/fish_expand_test/ " ) ) err ( L " mkdir failed " ) ;
if ( system ( " touch /tmp/fish_expand_test/.foo " ) ) err ( L " touch failed " ) ;
if ( system ( " touch /tmp/fish_expand_test/bar " ) ) err ( L " touch failed " ) ;
2012-11-18 10:23:22 +00:00
2012-10-16 01:16:47 +00:00
// This is checking that .* does NOT match . and .. (https://github.com/fish-shell/fish-shell/issues/270). But it does have to match literal components (e.g. "./*" has to match the same as "*"
2012-11-19 00:30:30 +00:00
if ( ! expand_test ( L " /tmp/fish_expand_test/.* " , 0 , L " /tmp/fish_expand_test/.foo " , 0 ) )
{
err ( L " Expansion not correctly handling dotfiles " ) ;
}
if ( ! expand_test ( L " /tmp/fish_expand_test/./.* " , 0 , L " /tmp/fish_expand_test/./.foo " , 0 ) )
{
err ( L " Expansion not correctly handling literal path components in dotfiles " ) ;
}
2012-10-16 01:16:47 +00:00
2013-05-25 22:41:18 +00:00
system ( " rm -Rf /tmp/fish_expand_test " ) ;
}
static void test_fuzzy_match ( void )
{
say ( L " Testing fuzzy string matching " ) ;
if ( string_fuzzy_match_string ( L " " , L " " ) . type ! = fuzzy_match_exact ) err ( L " test_fuzzy_match failed on line %ld " , __LINE__ ) ;
if ( string_fuzzy_match_string ( L " alpha " , L " alpha " ) . type ! = fuzzy_match_exact ) err ( L " test_fuzzy_match failed on line %ld " , __LINE__ ) ;
if ( string_fuzzy_match_string ( L " alp " , L " alpha " ) . type ! = fuzzy_match_prefix ) err ( L " test_fuzzy_match failed on line %ld " , __LINE__ ) ;
if ( string_fuzzy_match_string ( L " ALPHA! " , L " alPhA! " ) . type ! = fuzzy_match_case_insensitive ) err ( L " test_fuzzy_match failed on line %ld " , __LINE__ ) ;
if ( string_fuzzy_match_string ( L " alPh " , L " ALPHA! " ) . type ! = fuzzy_match_prefix_case_insensitive ) err ( L " test_fuzzy_match failed on line %ld " , __LINE__ ) ;
if ( string_fuzzy_match_string ( L " LPH " , L " ALPHA! " ) . type ! = fuzzy_match_substring ) err ( L " test_fuzzy_match failed on line %ld " , __LINE__ ) ;
if ( string_fuzzy_match_string ( L " AA " , L " ALPHA! " ) . type ! = fuzzy_match_subsequence_insertions_only ) err ( L " test_fuzzy_match failed on line %ld " , __LINE__ ) ;
if ( string_fuzzy_match_string ( L " BB " , L " ALPHA! " ) . type ! = fuzzy_match_none ) err ( L " test_fuzzy_match failed on line %ld " , __LINE__ ) ;
2005-09-20 13:26:39 +00:00
}
2013-07-17 07:38:04 +00:00
static void test_abbreviations ( void )
{
say ( L " Testing abbreviations " ) ;
const wchar_t * abbreviations =
L " gc=git checkout " ARRAY_SEP_STR
L " foo= " ARRAY_SEP_STR
L " gc=something else " ARRAY_SEP_STR
L " = " ARRAY_SEP_STR
L " =foo " ARRAY_SEP_STR
L " foo " ARRAY_SEP_STR
L " foo=bar " ;
env_push ( true ) ;
int ret = env_set ( USER_ABBREVIATIONS_VARIABLE_NAME , abbreviations , ENV_LOCAL ) ;
if ( ret ! = 0 ) err ( L " Unable to set abbreviation variable " ) ;
wcstring result ;
if ( expand_abbreviation ( L " " , & result ) ) err ( L " Unexpected success with empty abbreviation " ) ;
if ( expand_abbreviation ( L " nothing " , & result ) ) err ( L " Unexpected success with missing abbreviation " ) ;
if ( ! expand_abbreviation ( L " gc " , & result ) ) err ( L " Unexpected failure with gc abbreviation " ) ;
if ( result ! = L " git checkout " ) err ( L " Wrong abbreviation result for gc " ) ;
result . clear ( ) ;
if ( ! expand_abbreviation ( L " foo " , & result ) ) err ( L " Unexpected failure with foo abbreviation " ) ;
if ( result ! = L " bar " ) err ( L " Wrong abbreviation result for foo " ) ;
bool expanded ;
2013-07-17 09:55:15 +00:00
expanded = reader_expand_abbreviation_in_command ( L " just a command " , 3 , & result ) ;
2013-07-17 07:38:04 +00:00
if ( expanded ) err ( L " Command wrongly expanded on line %ld " , ( long ) __LINE__ ) ;
expanded = reader_expand_abbreviation_in_command ( L " gc somebranch " , 0 , & result ) ;
2013-07-17 09:55:15 +00:00
if ( ! expanded ) err ( L " Command not expanded on line %ld " , ( long ) __LINE__ ) ;
2013-07-17 07:38:04 +00:00
2013-07-17 09:55:15 +00:00
expanded = reader_expand_abbreviation_in_command ( L " gc somebranch " , wcslen ( L " gc " ) , & result ) ;
2013-07-17 07:38:04 +00:00
if ( ! expanded ) err ( L " gc not expanded " ) ;
if ( result ! = L " git checkout somebranch " ) err ( L " gc incorrectly expanded on line %ld to '%ls' " , ( long ) __LINE__ , result . c_str ( ) ) ;
2013-07-17 09:55:15 +00:00
expanded = reader_expand_abbreviation_in_command ( L " echo hi ; gc somebranch " , wcslen ( L " echo hi ; g " ) , & result ) ;
2013-07-17 07:38:04 +00:00
if ( ! expanded ) err ( L " gc not expanded on line %ld " , ( long ) __LINE__ ) ;
if ( result ! = L " echo hi ; git checkout somebranch " ) err ( L " gc incorrectly expanded on line %ld " , ( long ) __LINE__ ) ;
2013-07-17 09:55:15 +00:00
expanded = reader_expand_abbreviation_in_command ( L " echo (echo (echo (echo (gc " , wcslen ( L " echo (echo (echo (echo (gc " ) , & result ) ;
if ( ! expanded ) err ( L " gc not expanded on line %ld " , ( long ) __LINE__ ) ;
if ( result ! = L " echo (echo (echo (echo (git checkout " ) err ( L " gc incorrectly expanded on line %ld to '%ls' " , ( long ) __LINE__ , result . c_str ( ) ) ;
/* if commands should be expanded */
expanded = reader_expand_abbreviation_in_command ( L " if gc " , wcslen ( L " if gc " ) , & result ) ;
2013-07-17 07:38:04 +00:00
if ( ! expanded ) err ( L " gc not expanded on line %ld " , ( long ) __LINE__ ) ;
2013-07-17 09:55:15 +00:00
if ( result ! = L " if git checkout " ) err ( L " gc incorrectly expanded on line %ld to '%ls' " , ( long ) __LINE__ , result . c_str ( ) ) ;
/* others should not be */
expanded = reader_expand_abbreviation_in_command ( L " of gc " , wcslen ( L " of gc " ) , & result ) ;
if ( expanded ) err ( L " gc incorrectly expanded on line %ld " , ( long ) __LINE__ ) ;
2013-07-17 07:38:04 +00:00
2013-10-09 09:03:50 +00:00
/* others should not be */
expanded = reader_expand_abbreviation_in_command ( L " command gc " , wcslen ( L " command gc " ) , & result ) ;
if ( expanded ) err ( L " gc incorrectly expanded on line %ld " , ( long ) __LINE__ ) ;
2013-07-17 07:38:04 +00:00
env_pop ( ) ;
}
2012-03-07 08:54:01 +00:00
/** Test path functions */
2007-05-10 19:11:28 +00:00
static void test_path ( )
{
2012-11-19 00:30:30 +00:00
say ( L " Testing path functions " ) ;
2007-05-10 19:11:28 +00:00
2012-02-08 05:23:12 +00:00
wcstring path = L " //foo//////bar/ " ;
2013-08-28 01:26:22 +00:00
path_make_canonical ( path ) ;
if ( path ! = L " /foo/bar " )
2012-11-19 00:30:30 +00:00
{
err ( L " Bug in canonical PATH code " ) ;
}
2012-11-18 10:23:22 +00:00
2012-06-04 19:00:59 +00:00
path = L " / " ;
path_make_canonical ( path ) ;
if ( path ! = L " / " )
{
2012-11-19 00:30:30 +00:00
err ( L " Bug in canonical PATH code " ) ;
2012-06-04 19:00:59 +00:00
}
2013-10-26 22:27:39 +00:00
2013-08-28 01:26:22 +00:00
if ( paths_are_equivalent ( L " /foo/bar/baz " , L " foo/bar/baz " ) ) err ( L " Bug in canonical PATH code on line %ld " , ( long ) __LINE__ ) ;
if ( ! paths_are_equivalent ( L " ///foo///bar/baz " , L " /foo/bar////baz// " ) ) err ( L " Bug in canonical PATH code on line %ld " , ( long ) __LINE__ ) ;
if ( ! paths_are_equivalent ( L " /foo/bar/baz " , L " /foo/bar/baz " ) ) err ( L " Bug in canonical PATH code on line %ld " , ( long ) __LINE__ ) ;
if ( ! paths_are_equivalent ( L " / " , L " / " ) ) err ( L " Bug in canonical PATH code on line %ld " , ( long ) __LINE__ ) ;
2007-05-10 19:11:28 +00:00
}
2014-01-20 00:41:26 +00:00
static void test_pager_navigation ( )
{
say ( L " Testing pager navigation " ) ;
/* Generate 19 strings of width 10. There's 2 spaces between completions, and our term size is 80; these can therefore fit into 6 columns (6 * 12 - 2 = 70) or 5 columns (58) but not 7 columns (7 * 12 - 2 = 82).
You can simulate this test by creating 19 files named " file00.txt " through " file_18.txt " .
*/
completion_list_t completions ;
for ( size_t i = 0 ; i < 19 ; i + + )
{
append_completion ( completions , L " abcdefghij " ) ;
}
pager_t pager ;
pager . set_completions ( completions ) ;
pager . set_term_size ( 80 , 24 ) ;
page_rendering_t render = pager . render ( ) ;
if ( render . term_width ! = 80 )
err ( L " Wrong term width " ) ;
if ( render . term_height ! = 24 )
err ( L " Wrong term height " ) ;
size_t rows = 4 , cols = 5 ;
/* We have 19 completions. We can fit into 6 columns with 4 rows or 5 columns with 4 rows; the second one is better and so is what we ought to have picked. */
if ( render . rows ! = rows )
err ( L " Wrong row count " ) ;
if ( render . cols ! = cols )
err ( L " Wrong column count " ) ;
/* Initially expect to have no completion index */
if ( render . selected_completion_idx ! = ( size_t ) ( - 1 ) )
{
err ( L " Wrong initial selection " ) ;
}
/* Here are navigation directions and where we expect the selection to be */
const struct
{
selection_direction_t dir ;
size_t sel ;
}
cmds [ ] =
{
/* Tab completion to get into the list */
{ direction_next , 0 } ,
/* Westward motion in upper left wraps along the top row */
{ direction_west , 16 } ,
{ direction_east , 1 } ,
/* "Next" motion goes down the column */
{ direction_next , 2 } ,
{ direction_next , 3 } ,
{ direction_west , 18 } ,
{ direction_east , 3 } ,
{ direction_east , 7 } ,
{ direction_east , 11 } ,
{ direction_east , 15 } ,
{ direction_east , 3 } ,
{ direction_west , 18 } ,
{ direction_east , 3 } ,
/* Eastward motion wraps along the bottom, westward goes to the prior column */
{ direction_east , 7 } ,
{ direction_east , 11 } ,
{ direction_east , 15 } ,
{ direction_east , 3 } ,
/* Column memory */
{ direction_west , 18 } ,
{ direction_south , 15 } ,
{ direction_north , 18 } ,
{ direction_west , 14 } ,
{ direction_south , 15 } ,
{ direction_north , 14 }
} ;
for ( size_t i = 0 ; i < sizeof cmds / sizeof * cmds ; i + + )
{
pager . select_next_completion_in_direction ( cmds [ i ] . dir , render ) ;
pager . update_rendering ( & render ) ;
if ( cmds [ i ] . sel ! = render . selected_completion_idx )
{
err ( L " For command %lu, expected selection %lu, but found instead %lu \n " , i , cmds [ i ] . sel , render . selected_completion_idx ) ;
}
}
}
2012-12-22 20:21:31 +00:00
enum word_motion_t
{
2012-12-21 01:37:09 +00:00
word_motion_left ,
word_motion_right
} ;
static void test_1_word_motion ( word_motion_t motion , move_word_style_t style , const wcstring & test )
{
wcstring command ;
std : : set < size_t > stops ;
2012-12-22 20:21:31 +00:00
2012-12-21 01:37:09 +00:00
// Carets represent stops and should be cut out of the command
2012-12-22 20:21:31 +00:00
for ( size_t i = 0 ; i < test . size ( ) ; i + + )
{
2012-12-21 01:37:09 +00:00
wchar_t wc = test . at ( i ) ;
if ( wc = = L ' ^ ' )
{
stops . insert ( command . size ( ) ) ;
}
else
{
command . push_back ( wc ) ;
}
}
2012-12-22 20:21:31 +00:00
2012-12-21 01:37:09 +00:00
size_t idx , end ;
if ( motion = = word_motion_left )
{
idx = command . size ( ) ;
end = 0 ;
}
else
{
idx = 0 ;
end = command . size ( ) ;
}
2012-12-22 20:21:31 +00:00
2012-12-21 01:37:09 +00:00
move_word_state_machine_t sm ( style ) ;
while ( idx ! = end )
{
size_t char_idx = ( motion = = word_motion_left ? idx - 1 : idx ) ;
wchar_t wc = command . at ( char_idx ) ;
bool will_stop = ! sm . consume_char ( wc ) ;
//printf("idx %lu, looking at %lu (%c): %d\n", idx, char_idx, (char)wc, will_stop);
bool expected_stop = ( stops . count ( idx ) > 0 ) ;
if ( will_stop ! = expected_stop )
{
wcstring tmp = command ;
tmp . insert ( idx , L " ^ " ) ;
const char * dir = ( motion = = word_motion_left ? " left " : " right " ) ;
if ( will_stop )
{
err ( L " Word motion: moving %s, unexpected stop at idx %lu: '%ls' " , dir , idx , tmp . c_str ( ) ) ;
}
else if ( ! will_stop & & expected_stop )
{
err ( L " Word motion: moving %s, should have stopped at idx %lu: '%ls' " , dir , idx , tmp . c_str ( ) ) ;
}
}
// We don't expect to stop here next time
if ( expected_stop )
{
stops . erase ( idx ) ;
}
if ( will_stop )
{
sm . reset ( ) ;
}
else
{
idx + = ( motion = = word_motion_left ? - 1 : 1 ) ;
}
}
}
/** Test word motion (forward-word, etc.). Carets represent cursor stops. */
static void test_word_motion ( )
{
say ( L " Testing word motion " ) ;
test_1_word_motion ( word_motion_left , move_word_style_punctuation , L " ^echo ^hello_^world.^txt " ) ;
test_1_word_motion ( word_motion_right , move_word_style_punctuation , L " echo^ hello^_world^.txt^ " ) ;
2012-12-22 20:21:31 +00:00
2012-12-21 01:37:09 +00:00
test_1_word_motion ( word_motion_left , move_word_style_punctuation , L " echo ^foo_^foo_^foo/^/^/^/^/^ " ) ;
test_1_word_motion ( word_motion_right , move_word_style_punctuation , L " echo^ foo^_foo^_foo^/^/^/^/^/ ^ " ) ;
2012-12-22 20:21:31 +00:00
2012-12-21 01:37:09 +00:00
test_1_word_motion ( word_motion_left , move_word_style_path_components , L " ^/^foo/^bar/^baz/ " ) ;
test_1_word_motion ( word_motion_left , move_word_style_path_components , L " ^echo ^--foo ^--bar " ) ;
test_1_word_motion ( word_motion_left , move_word_style_path_components , L " ^echo ^hi ^> /^dev/^null " ) ;
2012-12-22 20:21:31 +00:00
2012-12-21 01:37:09 +00:00
test_1_word_motion ( word_motion_left , move_word_style_path_components , L " ^echo /^foo/^bar{^aaa,^bbb,^ccc}^bak/ " ) ;
}
2012-05-14 03:19:02 +00:00
/** Test is_potential_path */
static void test_is_potential_path ( )
{
say ( L " Testing is_potential_path " ) ;
2012-11-19 00:30:30 +00:00
if ( system ( " rm -Rf /tmp/is_potential_path_test/ " ) )
{
2012-05-14 03:19:02 +00:00
err ( L " Failed to remove /tmp/is_potential_path_test/ " ) ;
}
2012-11-18 10:23:22 +00:00
2012-05-14 03:19:02 +00:00
/* Directories */
if ( system ( " mkdir -p /tmp/is_potential_path_test/alpha/ " ) ) err ( L " mkdir failed " ) ;
if ( system ( " mkdir -p /tmp/is_potential_path_test/beta/ " ) ) err ( L " mkdir failed " ) ;
2012-11-18 10:23:22 +00:00
2012-05-14 03:19:02 +00:00
/* Files */
if ( system ( " touch /tmp/is_potential_path_test/aardvark " ) ) err ( L " touch failed " ) ;
if ( system ( " touch /tmp/is_potential_path_test/gamma " ) ) err ( L " touch failed " ) ;
2012-11-18 10:23:22 +00:00
2012-05-14 03:19:02 +00:00
const wcstring wd = L " /tmp/is_potential_path_test/ " ;
const wcstring_list_t wds ( 1 , wd ) ;
2012-11-18 10:23:22 +00:00
2012-05-14 03:19:02 +00:00
wcstring tmp ;
2014-01-24 02:19:52 +00:00
do_test ( is_potential_path ( L " al " , wds , PATH_REQUIRE_DIR , & tmp ) & & tmp = = L " alpha/ " ) ;
do_test ( is_potential_path ( L " alpha/ " , wds , PATH_REQUIRE_DIR , & tmp ) & & tmp = = L " alpha/ " ) ;
do_test ( is_potential_path ( L " aard " , wds , 0 , & tmp ) & & tmp = = L " aardvark " ) ;
2012-11-18 10:23:22 +00:00
2014-01-24 02:19:52 +00:00
do_test ( ! is_potential_path ( L " balpha/ " , wds , PATH_REQUIRE_DIR , & tmp ) ) ;
do_test ( ! is_potential_path ( L " aard " , wds , PATH_REQUIRE_DIR , & tmp ) ) ;
do_test ( ! is_potential_path ( L " aarde " , wds , PATH_REQUIRE_DIR , & tmp ) ) ;
do_test ( ! is_potential_path ( L " aarde " , wds , 0 , & tmp ) ) ;
2012-11-18 10:23:22 +00:00
2014-01-24 02:19:52 +00:00
do_test ( is_potential_path ( L " /tmp/is_potential_path_test/aardvark " , wds , 0 , & tmp ) & & tmp = = L " /tmp/is_potential_path_test/aardvark " ) ;
do_test ( is_potential_path ( L " /tmp/is_potential_path_test/al " , wds , PATH_REQUIRE_DIR , & tmp ) & & tmp = = L " /tmp/is_potential_path_test/alpha/ " ) ;
do_test ( is_potential_path ( L " /tmp/is_potential_path_test/aardv " , wds , 0 , & tmp ) & & tmp = = L " /tmp/is_potential_path_test/aardvark " ) ;
2012-11-18 10:23:22 +00:00
2014-01-24 02:19:52 +00:00
do_test ( ! is_potential_path ( L " /tmp/is_potential_path_test/aardvark " , wds , PATH_REQUIRE_DIR , & tmp ) ) ;
do_test ( ! is_potential_path ( L " /tmp/is_potential_path_test/al/ " , wds , 0 , & tmp ) ) ;
do_test ( ! is_potential_path ( L " /tmp/is_potential_path_test/ar " , wds , 0 , & tmp ) ) ;
2012-11-18 10:23:22 +00:00
2014-01-24 02:19:52 +00:00
do_test ( is_potential_path ( L " /usr " , wds , PATH_REQUIRE_DIR , & tmp ) & & tmp = = L " /usr/ " ) ;
2012-05-14 03:49:14 +00:00
2012-05-14 03:19:02 +00:00
}
2012-03-07 08:54:01 +00:00
/** Test the 'test' builtin */
2012-11-19 00:30:30 +00:00
int builtin_test ( parser_t & parser , wchar_t * * argv ) ;
2013-01-05 09:30:03 +00:00
static bool run_one_test_test ( int expected , wcstring_list_t & lst , bool bracket )
2012-11-19 00:30:30 +00:00
{
2012-05-07 19:55:13 +00:00
parser_t parser ( PARSER_TYPE_GENERAL , true ) ;
2012-03-07 08:54:01 +00:00
size_t i , count = lst . size ( ) ;
2013-01-05 09:30:03 +00:00
wchar_t * * argv = new wchar_t * [ count + 3 ] ;
argv [ 0 ] = ( wchar_t * ) ( bracket ? L " [ " : L " test " ) ;
2012-11-19 00:30:30 +00:00
for ( i = 0 ; i < count ; i + + )
{
2012-03-07 08:54:01 +00:00
argv [ i + 1 ] = ( wchar_t * ) lst . at ( i ) . c_str ( ) ;
}
2013-01-05 09:30:03 +00:00
if ( bracket )
{
argv [ i + 1 ] = ( wchar_t * ) L " ] " ;
i + + ;
}
2012-03-07 08:54:01 +00:00
argv [ i + 1 ] = NULL ;
int result = builtin_test ( parser , argv ) ;
delete [ ] argv ;
return expected = = result ;
}
2012-11-19 00:30:30 +00:00
static bool run_test_test ( int expected , const wcstring & str )
{
2012-03-07 08:54:01 +00:00
using namespace std ;
wcstring_list_t lst ;
wistringstream iss ( str ) ;
copy ( istream_iterator < wcstring , wchar_t , std : : char_traits < wchar_t > > ( iss ) ,
2012-11-19 00:30:30 +00:00
istream_iterator < wstring , wchar_t , std : : char_traits < wchar_t > > ( ) ,
back_inserter < vector < wcstring > > ( lst ) ) ;
2013-01-08 10:39:22 +00:00
2013-01-05 09:30:03 +00:00
bool bracket = run_one_test_test ( expected , lst , true ) ;
bool nonbracket = run_one_test_test ( expected , lst , false ) ;
2014-01-24 02:19:52 +00:00
do_test ( bracket = = nonbracket ) ;
2013-01-05 09:30:03 +00:00
return nonbracket ;
}
static void test_test_brackets ( )
{
// Ensure [ knows it needs a ]
parser_t parser ( PARSER_TYPE_GENERAL , true ) ;
2013-01-08 10:39:22 +00:00
2013-01-05 09:30:03 +00:00
const wchar_t * argv1 [ ] = { L " [ " , L " foo " , NULL } ;
2014-01-24 02:19:52 +00:00
do_test ( builtin_test ( parser , ( wchar_t * * ) argv1 ) ! = 0 ) ;
2013-01-08 10:39:22 +00:00
2013-01-05 09:30:03 +00:00
const wchar_t * argv2 [ ] = { L " [ " , L " foo " , L " ] " , NULL } ;
2014-01-24 02:19:52 +00:00
do_test ( builtin_test ( parser , ( wchar_t * * ) argv2 ) = = 0 ) ;
2013-01-08 10:39:22 +00:00
2013-01-05 09:30:03 +00:00
const wchar_t * argv3 [ ] = { L " [ " , L " foo " , L " ] " , L " bar " , NULL } ;
2014-01-24 02:19:52 +00:00
do_test ( builtin_test ( parser , ( wchar_t * * ) argv3 ) ! = 0 ) ;
2013-01-05 09:30:03 +00:00
2012-03-07 08:54:01 +00:00
}
2012-11-19 00:30:30 +00:00
static void test_test ( )
{
2012-03-07 08:54:01 +00:00
say ( L " Testing test builtin " ) ;
2013-01-05 09:30:03 +00:00
test_test_brackets ( ) ;
2012-05-20 19:58:03 +00:00
2014-01-24 02:19:52 +00:00
do_test ( run_test_test ( 0 , L " 5 -ne 6 " ) ) ;
do_test ( run_test_test ( 0 , L " 5 -eq 5 " ) ) ;
do_test ( run_test_test ( 0 , L " 0 -eq 0 " ) ) ;
do_test ( run_test_test ( 0 , L " -1 -eq -1 " ) ) ;
do_test ( run_test_test ( 0 , L " 1 -ne -1 " ) ) ;
do_test ( run_test_test ( 1 , L " -1 -ne -1 " ) ) ;
do_test ( run_test_test ( 0 , L " abc != def " ) ) ;
do_test ( run_test_test ( 1 , L " abc = def " ) ) ;
do_test ( run_test_test ( 0 , L " 5 -le 10 " ) ) ;
do_test ( run_test_test ( 0 , L " 10 -le 10 " ) ) ;
do_test ( run_test_test ( 1 , L " 20 -le 10 " ) ) ;
do_test ( run_test_test ( 0 , L " -1 -le 0 " ) ) ;
do_test ( run_test_test ( 1 , L " 0 -le -1 " ) ) ;
do_test ( run_test_test ( 0 , L " 15 -ge 10 " ) ) ;
do_test ( run_test_test ( 0 , L " 15 -ge 10 " ) ) ;
do_test ( run_test_test ( 1 , L " ! 15 -ge 10 " ) ) ;
do_test ( run_test_test ( 0 , L " ! ! 15 -ge 10 " ) ) ;
do_test ( run_test_test ( 0 , L " 0 -ne 1 -a 0 -eq 0 " ) ) ;
do_test ( run_test_test ( 0 , L " 0 -ne 1 -a -n 5 " ) ) ;
do_test ( run_test_test ( 0 , L " -n 5 -a 10 -gt 5 " ) ) ;
do_test ( run_test_test ( 0 , L " -n 3 -a -n 5 " ) ) ;
2012-11-18 10:23:22 +00:00
2012-03-07 08:54:01 +00:00
/* test precedence:
' 0 = = 0 | | 0 = = 1 & & 0 = = 2 '
should be evaluated as :
' 0 = = 0 | | ( 0 = = 1 & & 0 = = 2 ) '
and therefore true . If it were
' ( 0 = = 0 | | 0 = = 1 ) & & 0 = = 2 '
it would be false . */
2014-01-24 02:19:52 +00:00
do_test ( run_test_test ( 0 , L " 0 = 0 -o 0 = 1 -a 0 = 2 " ) ) ;
do_test ( run_test_test ( 0 , L " -n 5 -o 0 = 1 -a 0 = 2 " ) ) ;
do_test ( run_test_test ( 1 , L " ( 0 = 0 -o 0 = 1 ) -a 0 = 2 " ) ) ;
do_test ( run_test_test ( 0 , L " 0 = 0 -o ( 0 = 1 -a 0 = 2 ) " ) ) ;
2012-11-18 10:23:22 +00:00
2012-03-07 08:54:01 +00:00
/* A few lame tests for permissions; these need to be a lot more complete. */
2014-01-24 02:19:52 +00:00
do_test ( run_test_test ( 0 , L " -e /bin/ls " ) ) ;
do_test ( run_test_test ( 1 , L " -e /bin/ls_not_a_path " ) ) ;
do_test ( run_test_test ( 0 , L " -x /bin/ls " ) ) ;
do_test ( run_test_test ( 1 , L " -x /bin/ls_not_a_path " ) ) ;
do_test ( run_test_test ( 0 , L " -d /bin/ " ) ) ;
do_test ( run_test_test ( 1 , L " -d /bin/ls " ) ) ;
2012-11-18 10:23:22 +00:00
2012-05-20 19:58:03 +00:00
/* This failed at one point */
2014-01-24 02:19:52 +00:00
do_test ( run_test_test ( 1 , L " -d /bin -a 5 -eq 3 " ) ) ;
do_test ( run_test_test ( 0 , L " -d /bin -o 5 -eq 3 " ) ) ;
do_test ( run_test_test ( 0 , L " -d /bin -a ! 5 -eq 3 " ) ) ;
2012-11-18 10:23:22 +00:00
2012-05-20 19:58:03 +00:00
/* We didn't properly handle multiple "just strings" either */
2014-01-24 02:19:52 +00:00
do_test ( run_test_test ( 0 , L " foo " ) ) ;
do_test ( run_test_test ( 0 , L " foo -a bar " ) ) ;
2013-01-08 10:39:22 +00:00
2013-01-05 09:30:03 +00:00
/* These should be errors */
2014-01-24 02:19:52 +00:00
do_test ( run_test_test ( 1 , L " foo bar " ) ) ;
do_test ( run_test_test ( 1 , L " foo bar baz " ) ) ;
2013-01-08 10:39:22 +00:00
2013-01-06 22:48:46 +00:00
/* This crashed */
2014-01-24 02:19:52 +00:00
do_test ( run_test_test ( 1 , L " 1 = 1 -a = 1 " ) ) ;
2013-03-22 00:44:51 +00:00
2013-03-03 21:22:00 +00:00
/* Make sure we can treat -S as a parameter instead of an operator. https://github.com/fish-shell/fish-shell/issues/601 */
2014-01-24 02:19:52 +00:00
do_test ( run_test_test ( 0 , L " -S = -S " ) ) ;
do_test ( run_test_test ( 1 , L " ! ! ! A " ) ) ;
2012-03-07 08:54:01 +00:00
}
2012-02-13 02:05:59 +00:00
/** Testing colors */
static void test_colors ( )
{
say ( L " Testing colors " ) ;
2014-01-24 02:19:52 +00:00
do_test ( rgb_color_t ( L " #FF00A0 " ) . is_rgb ( ) ) ;
do_test ( rgb_color_t ( L " FF00A0 " ) . is_rgb ( ) ) ;
do_test ( rgb_color_t ( L " #F30 " ) . is_rgb ( ) ) ;
do_test ( rgb_color_t ( L " F30 " ) . is_rgb ( ) ) ;
do_test ( rgb_color_t ( L " f30 " ) . is_rgb ( ) ) ;
do_test ( rgb_color_t ( L " #FF30a5 " ) . is_rgb ( ) ) ;
do_test ( rgb_color_t ( L " 3f30 " ) . is_none ( ) ) ;
do_test ( rgb_color_t ( L " ##f30 " ) . is_none ( ) ) ;
do_test ( rgb_color_t ( L " magenta " ) . is_named ( ) ) ;
do_test ( rgb_color_t ( L " MaGeNTa " ) . is_named ( ) ) ;
do_test ( rgb_color_t ( L " mooganta " ) . is_none ( ) ) ;
2012-02-13 02:05:59 +00:00
}
2007-05-10 19:11:28 +00:00
2013-03-06 04:54:16 +00:00
static void test_complete ( void )
{
say ( L " Testing complete " ) ;
const wchar_t * name_strs [ ] = { L " Foo1 " , L " Foo2 " , L " Foo3 " , L " Bar1 " , L " Bar2 " , L " Bar3 " } ;
size_t count = sizeof name_strs / sizeof * name_strs ;
const wcstring_list_t names ( name_strs , name_strs + count ) ;
2013-03-22 00:44:51 +00:00
2013-03-06 04:54:16 +00:00
complete_set_variable_names ( & names ) ;
2013-03-22 00:44:51 +00:00
2013-03-06 04:54:16 +00:00
std : : vector < completion_t > completions ;
complete ( L " $F " , completions , COMPLETION_REQUEST_DEFAULT ) ;
2014-01-24 02:19:52 +00:00
do_test ( completions . size ( ) = = 3 ) ;
do_test ( completions . at ( 0 ) . completion = = L " oo1 " ) ;
do_test ( completions . at ( 1 ) . completion = = L " oo2 " ) ;
do_test ( completions . at ( 2 ) . completion = = L " oo3 " ) ;
2013-06-02 08:14:26 +00:00
2013-05-25 22:41:18 +00:00
completions . clear ( ) ;
complete ( L " $1 " , completions , COMPLETION_REQUEST_DEFAULT ) ;
2014-01-24 02:19:52 +00:00
do_test ( completions . empty ( ) ) ;
2013-06-02 08:14:26 +00:00
2013-05-25 22:41:18 +00:00
completions . clear ( ) ;
complete ( L " $1 " , completions , COMPLETION_REQUEST_DEFAULT | COMPLETION_REQUEST_FUZZY_MATCH ) ;
2014-01-24 02:19:52 +00:00
do_test ( completions . size ( ) = = 2 ) ;
do_test ( completions . at ( 0 ) . completion = = L " $Foo1 " ) ;
do_test ( completions . at ( 1 ) . completion = = L " $Bar1 " ) ;
2014-01-15 09:40:40 +00:00
2013-10-12 18:32:34 +00:00
completions . clear ( ) ;
2013-10-12 19:04:31 +00:00
complete ( L " echo (/bin/mkdi " , completions , COMPLETION_REQUEST_DEFAULT ) ;
2014-01-24 02:19:52 +00:00
do_test ( completions . size ( ) = = 1 ) ;
do_test ( completions . at ( 0 ) . completion = = L " r " ) ;
2014-01-15 09:40:40 +00:00
2013-10-12 19:04:31 +00:00
completions . clear ( ) ;
complete ( L " echo (ls /bin/mkdi " , completions , COMPLETION_REQUEST_DEFAULT ) ;
2014-01-24 02:19:52 +00:00
do_test ( completions . size ( ) = = 1 ) ;
do_test ( completions . at ( 0 ) . completion = = L " r " ) ;
2014-01-15 09:40:40 +00:00
2013-10-12 19:04:31 +00:00
completions . clear ( ) ;
complete ( L " echo (command ls /bin/mkdi " , completions , COMPLETION_REQUEST_DEFAULT ) ;
2014-01-24 02:19:52 +00:00
do_test ( completions . size ( ) = = 1 ) ;
do_test ( completions . at ( 0 ) . completion = = L " r " ) ;
2014-01-15 09:40:40 +00:00
2013-10-12 19:04:31 +00:00
/* Add a function and test completing it in various ways */
struct function_data_t func_data ;
func_data . name = L " scuttlebutt " ;
func_data . definition = L " echo gongoozle " ;
function_add ( func_data , parser_t : : principal_parser ( ) ) ;
2013-05-25 22:41:18 +00:00
2013-10-12 19:04:31 +00:00
/* Complete a function name */
completions . clear ( ) ;
complete ( L " echo (scuttlebut " , completions , COMPLETION_REQUEST_DEFAULT ) ;
2014-01-24 02:19:52 +00:00
do_test ( completions . size ( ) = = 1 ) ;
do_test ( completions . at ( 0 ) . completion = = L " t " ) ;
2013-10-12 19:04:31 +00:00
/* But not with the command prefix */
completions . clear ( ) ;
complete ( L " echo (command scuttlebut " , completions , COMPLETION_REQUEST_DEFAULT ) ;
2014-01-24 02:19:52 +00:00
do_test ( completions . size ( ) = = 0 ) ;
2013-06-02 08:14:26 +00:00
2013-10-12 19:04:31 +00:00
/* Not with the builtin prefix */
completions . clear ( ) ;
complete ( L " echo (builtin scuttlebut " , completions , COMPLETION_REQUEST_DEFAULT ) ;
2014-01-24 02:19:52 +00:00
do_test ( completions . size ( ) = = 0 ) ;
2014-01-24 02:07:21 +00:00
/* Trailing spaces (#1261) */
complete_add ( L " foobarbaz " , false , 0 , NULL , 0 , NO_FILES , NULL , L " qux " , NULL , COMPLETE_AUTO_SPACE ) ;
completions . clear ( ) ;
complete ( L " foobarbaz " , completions , COMPLETION_REQUEST_DEFAULT ) ;
2014-01-24 02:19:52 +00:00
do_test ( completions . size ( ) = = 1 ) ;
do_test ( completions . at ( 0 ) . completion = = L " qux " ) ;
2014-02-09 23:27:04 +00:00
/* Don't complete variable names in single quotes (#1023) */
completions . clear ( ) ;
complete ( L " echo '$Foo " , completions , COMPLETION_REQUEST_DEFAULT ) ;
do_test ( completions . empty ( ) ) ;
completions . clear ( ) ;
complete ( L " echo \\ $Foo " , completions , COMPLETION_REQUEST_DEFAULT ) ;
do_test ( completions . empty ( ) ) ;
2014-01-15 09:40:40 +00:00
2013-03-06 04:54:16 +00:00
complete_set_variable_names ( NULL ) ;
}
2013-02-02 22:50:22 +00:00
static void test_1_completion ( wcstring line , const wcstring & completion , complete_flags_t flags , bool append_only , wcstring expected , long source_line )
{
// str is given with a caret, which we use to represent the cursor position
// find it
const size_t in_cursor_pos = line . find ( L ' ^ ' ) ;
2014-01-24 02:19:52 +00:00
do_test ( in_cursor_pos ! = wcstring : : npos ) ;
2013-02-02 22:50:22 +00:00
line . erase ( in_cursor_pos , 1 ) ;
2013-02-03 19:38:22 +00:00
2013-02-02 22:50:22 +00:00
const size_t out_cursor_pos = expected . find ( L ' ^ ' ) ;
2014-01-24 02:19:52 +00:00
do_test ( out_cursor_pos ! = wcstring : : npos ) ;
2013-02-02 22:50:22 +00:00
expected . erase ( out_cursor_pos , 1 ) ;
2013-02-03 19:38:22 +00:00
2013-02-02 22:50:22 +00:00
size_t cursor_pos = in_cursor_pos ;
wcstring result = completion_apply_to_command_line ( completion , flags , line , & cursor_pos , append_only ) ;
if ( result ! = expected )
{
fprintf ( stderr , " line %ld: %ls + %ls -> [%ls], expected [%ls] \n " , source_line , line . c_str ( ) , completion . c_str ( ) , result . c_str ( ) , expected . c_str ( ) ) ;
}
2014-01-24 02:19:52 +00:00
do_test ( result = = expected ) ;
do_test ( cursor_pos = = out_cursor_pos ) ;
2013-02-02 22:50:22 +00:00
}
2013-03-06 04:54:16 +00:00
static void test_completion_insertions ( )
2013-02-02 22:50:22 +00:00
{
2013-02-03 19:38:22 +00:00
# define TEST_1_COMPLETION(a, b, c, d, e) test_1_completion(a, b, c, d, e, __LINE__)
2013-03-06 04:54:16 +00:00
say ( L " Testing completion insertions " ) ;
2013-02-02 22:50:22 +00:00
TEST_1_COMPLETION ( L " foo^ " , L " bar " , 0 , false , L " foobar ^ " ) ;
TEST_1_COMPLETION ( L " foo^ baz " , L " bar " , 0 , false , L " foobar ^ baz " ) ; //we really do want to insert two spaces here - otherwise it's hidden by the cursor
TEST_1_COMPLETION ( L " 'foo^ " , L " bar " , 0 , false , L " 'foobar' ^ " ) ;
TEST_1_COMPLETION ( L " 'foo'^ " , L " bar " , 0 , false , L " 'foobar' ^ " ) ;
TEST_1_COMPLETION ( L " 'foo \\ '^ " , L " bar " , 0 , false , L " 'foo \\ 'bar' ^ " ) ;
TEST_1_COMPLETION ( L " foo \\ '^ " , L " bar " , 0 , false , L " foo \\ 'bar ^ " ) ;
2013-02-03 19:38:22 +00:00
2013-02-02 22:50:22 +00:00
// Test append only
TEST_1_COMPLETION ( L " foo^ " , L " bar " , 0 , true , L " foobar ^ " ) ;
TEST_1_COMPLETION ( L " foo^ baz " , L " bar " , 0 , true , L " foobar ^ baz " ) ;
TEST_1_COMPLETION ( L " 'foo^ " , L " bar " , 0 , true , L " 'foobar' ^ " ) ;
TEST_1_COMPLETION ( L " 'foo'^ " , L " bar " , 0 , true , L " 'foo'bar ^ " ) ;
TEST_1_COMPLETION ( L " 'foo \\ '^ " , L " bar " , 0 , true , L " 'foo \\ 'bar' ^ " ) ;
TEST_1_COMPLETION ( L " foo \\ '^ " , L " bar " , 0 , true , L " foo \\ 'bar ^ " ) ;
2013-02-03 19:38:22 +00:00
2013-02-02 22:50:22 +00:00
TEST_1_COMPLETION ( L " foo^ " , L " bar " , COMPLETE_NO_SPACE , false , L " foobar^ " ) ;
TEST_1_COMPLETION ( L " 'foo^ " , L " bar " , COMPLETE_NO_SPACE , false , L " 'foobar^ " ) ;
TEST_1_COMPLETION ( L " 'foo'^ " , L " bar " , COMPLETE_NO_SPACE , false , L " 'foobar'^ " ) ;
TEST_1_COMPLETION ( L " 'foo \\ '^ " , L " bar " , COMPLETE_NO_SPACE , false , L " 'foo \\ 'bar^ " ) ;
TEST_1_COMPLETION ( L " foo \\ '^ " , L " bar " , COMPLETE_NO_SPACE , false , L " foo \\ 'bar^ " ) ;
2013-05-25 22:41:18 +00:00
TEST_1_COMPLETION ( L " foo^ " , L " bar " , COMPLETE_REPLACES_TOKEN , false , L " bar ^ " ) ;
TEST_1_COMPLETION ( L " 'foo^ " , L " bar " , COMPLETE_REPLACES_TOKEN , false , L " bar ^ " ) ;
2013-02-02 22:50:22 +00:00
}
2012-07-06 21:34:53 +00:00
static void perform_one_autosuggestion_test ( const wcstring & command , const wcstring & wd , const wcstring & expected , long line )
{
wcstring suggestion ;
bool success = autosuggest_suggest_special ( command , wd , suggestion ) ;
if ( ! success )
{
printf ( " line %ld: autosuggest_suggest_special() failed for command %ls \n " , line , command . c_str ( ) ) ;
2014-01-24 02:19:52 +00:00
do_test ( success ) ;
2012-07-06 21:34:53 +00:00
}
if ( suggestion ! = expected )
{
printf ( " line %ld: autosuggest_suggest_special() returned the wrong expected string for command %ls \n " , line , command . c_str ( ) ) ;
printf ( " actual: %ls \n " , suggestion . c_str ( ) ) ;
printf ( " expected: %ls \n " , expected . c_str ( ) ) ;
2014-01-24 02:19:52 +00:00
do_test ( suggestion = = expected ) ;
2012-07-06 21:34:53 +00:00
}
}
/* Testing test_autosuggest_suggest_special, in particular for properly handling quotes and backslashes */
2012-11-19 00:30:30 +00:00
static void test_autosuggest_suggest_special ( )
{
2012-07-06 21:34:53 +00:00
if ( system ( " mkdir -p '/tmp/autosuggest_test/0foobar' " ) ) err ( L " mkdir failed " ) ;
if ( system ( " mkdir -p '/tmp/autosuggest_test/1foo bar' " ) ) err ( L " mkdir failed " ) ;
if ( system ( " mkdir -p '/tmp/autosuggest_test/2foo bar' " ) ) err ( L " mkdir failed " ) ;
if ( system ( " mkdir -p '/tmp/autosuggest_test/3foo \\ bar' " ) ) err ( L " mkdir failed " ) ;
if ( system ( " mkdir -p /tmp/autosuggest_test/4foo \\ 'bar " ) ) err ( L " mkdir failed " ) ; //a path with a single quote
if ( system ( " mkdir -p /tmp/autosuggest_test/5foo \\ \" bar " ) ) err ( L " mkdir failed " ) ; //a path with a double quote
if ( system ( " mkdir -p ~/test_autosuggest_suggest_special/ " ) ) err ( L " mkdir failed " ) ; //make sure tilde is handled
2012-11-18 10:23:22 +00:00
2012-07-06 21:34:53 +00:00
const wcstring wd = L " /tmp/autosuggest_test/ " ;
perform_one_autosuggestion_test ( L " cd /tmp/autosuggest_test/0 " , wd , L " cd /tmp/autosuggest_test/0foobar/ " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd \" /tmp/autosuggest_test/0 " , wd , L " cd \" /tmp/autosuggest_test/0foobar/ \" " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd '/tmp/autosuggest_test/0 " , wd , L " cd '/tmp/autosuggest_test/0foobar/' " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd 0 " , wd , L " cd 0foobar/ " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd \" 0 " , wd , L " cd \" 0foobar/ \" " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd '0 " , wd , L " cd '0foobar/' " , __LINE__ ) ;
2012-11-18 10:23:22 +00:00
2012-07-06 21:34:53 +00:00
perform_one_autosuggestion_test ( L " cd /tmp/autosuggest_test/1 " , wd , L " cd /tmp/autosuggest_test/1foo \\ bar/ " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd \" /tmp/autosuggest_test/1 " , wd , L " cd \" /tmp/autosuggest_test/1foo bar/ \" " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd '/tmp/autosuggest_test/1 " , wd , L " cd '/tmp/autosuggest_test/1foo bar/' " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd 1 " , wd , L " cd 1foo \\ bar/ " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd \" 1 " , wd , L " cd \" 1foo bar/ \" " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd '1 " , wd , L " cd '1foo bar/' " , __LINE__ ) ;
2012-11-18 10:23:22 +00:00
2012-07-06 21:34:53 +00:00
perform_one_autosuggestion_test ( L " cd /tmp/autosuggest_test/2 " , wd , L " cd /tmp/autosuggest_test/2foo \\ \\ bar/ " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd \" /tmp/autosuggest_test/2 " , wd , L " cd \" /tmp/autosuggest_test/2foo bar/ \" " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd '/tmp/autosuggest_test/2 " , wd , L " cd '/tmp/autosuggest_test/2foo bar/' " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd 2 " , wd , L " cd 2foo \\ \\ bar/ " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd \" 2 " , wd , L " cd \" 2foo bar/ \" " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd '2 " , wd , L " cd '2foo bar/' " , __LINE__ ) ;
2012-11-18 10:23:22 +00:00
2012-07-06 21:34:53 +00:00
perform_one_autosuggestion_test ( L " cd /tmp/autosuggest_test/3 " , wd , L " cd /tmp/autosuggest_test/3foo \\ \\ bar/ " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd \" /tmp/autosuggest_test/3 " , wd , L " cd \" /tmp/autosuggest_test/3foo \\ bar/ \" " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd '/tmp/autosuggest_test/3 " , wd , L " cd '/tmp/autosuggest_test/3foo \\ bar/' " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd 3 " , wd , L " cd 3foo \\ \\ bar/ " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd \" 3 " , wd , L " cd \" 3foo \\ bar/ \" " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd '3 " , wd , L " cd '3foo \\ bar/' " , __LINE__ ) ;
2012-11-18 10:23:22 +00:00
2012-07-06 21:34:53 +00:00
perform_one_autosuggestion_test ( L " cd /tmp/autosuggest_test/4 " , wd , L " cd /tmp/autosuggest_test/4foo \\ 'bar/ " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd \" /tmp/autosuggest_test/4 " , wd , L " cd \" /tmp/autosuggest_test/4foo'bar/ \" " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd '/tmp/autosuggest_test/4 " , wd , L " cd '/tmp/autosuggest_test/4foo \\ 'bar/' " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd 4 " , wd , L " cd 4foo \\ 'bar/ " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd \" 4 " , wd , L " cd \" 4foo'bar/ \" " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd '4 " , wd , L " cd '4foo \\ 'bar/' " , __LINE__ ) ;
2012-11-18 10:23:22 +00:00
2012-07-06 21:34:53 +00:00
perform_one_autosuggestion_test ( L " cd /tmp/autosuggest_test/5 " , wd , L " cd /tmp/autosuggest_test/5foo \\ \" bar/ " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd \" /tmp/autosuggest_test/5 " , wd , L " cd \" /tmp/autosuggest_test/5foo \\ \" bar/ \" " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd '/tmp/autosuggest_test/5 " , wd , L " cd '/tmp/autosuggest_test/5foo \" bar/' " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd 5 " , wd , L " cd 5foo \\ \" bar/ " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd \" 5 " , wd , L " cd \" 5foo \\ \" bar/ \" " , __LINE__ ) ;
perform_one_autosuggestion_test ( L " cd '5 " , wd , L " cd '5foo \" bar/' " , __LINE__ ) ;
2012-11-18 10:23:22 +00:00
2012-07-06 21:34:53 +00:00
perform_one_autosuggestion_test ( L " cd ~/test_autosuggest_suggest_specia " , wd , L " cd ~/test_autosuggest_suggest_special/ " , __LINE__ ) ;
2012-11-18 10:23:22 +00:00
2012-07-06 21:34:53 +00:00
// A single quote should defeat tilde expansion
perform_one_autosuggestion_test ( L " cd '~/test_autosuggest_suggest_specia' " , wd , L " " , __LINE__ ) ;
2012-11-18 10:23:22 +00:00
2012-07-06 21:34:53 +00:00
system ( " rm -Rf '/tmp/autosuggest_test/' " ) ;
system ( " rm -Rf ~/test_autosuggest_suggest_special/ " ) ;
2012-02-19 07:26:39 +00:00
}
2013-01-05 23:21:42 +00:00
static void test_autosuggestion_combining ( )
{
say ( L " Testing autosuggestion combining " ) ;
2014-01-24 02:19:52 +00:00
do_test ( combine_command_and_autosuggestion ( L " alpha " , L " alphabeta " ) = = L " alphabeta " ) ;
2013-01-08 10:39:22 +00:00
2013-01-05 23:21:42 +00:00
// when the last token contains no capital letters, we use the case of the autosuggestion
2014-01-24 02:19:52 +00:00
do_test ( combine_command_and_autosuggestion ( L " alpha " , L " ALPHABETA " ) = = L " ALPHABETA " ) ;
2013-01-08 10:39:22 +00:00
2013-01-05 23:21:42 +00:00
// when the last token contains capital letters, we use its case
2014-01-24 02:19:52 +00:00
do_test ( combine_command_and_autosuggestion ( L " alPha " , L " alphabeTa " ) = = L " alPhabeTa " ) ;
2013-01-08 10:39:22 +00:00
2013-01-06 22:10:03 +00:00
// if autosuggestion is not longer than input, use the input's case
2014-01-24 02:19:52 +00:00
do_test ( combine_command_and_autosuggestion ( L " alpha " , L " ALPHAA " ) = = L " ALPHAA " ) ;
do_test ( combine_command_and_autosuggestion ( L " alpha " , L " ALPHA " ) = = L " alpha " ) ;
2013-01-05 23:21:42 +00:00
}
2007-05-10 19:11:28 +00:00
2005-10-24 15:26:25 +00:00
/**
Test speed of completion calculations
*/
2005-09-20 13:26:39 +00:00
void perf_complete ( )
{
2012-11-19 00:30:30 +00:00
wchar_t c ;
std : : vector < completion_t > out ;
long long t1 , t2 ;
int matches = 0 ;
double t ;
wchar_t str [ 3 ] =
{
0 , 0 , 0
}
;
int i ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
say ( L " Testing completion performance " ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
reader_push ( L " " ) ;
say ( L " Here we go " ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
t1 = get_time ( ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
for ( c = L ' a ' ; c < = L ' z ' ; c + + )
{
str [ 0 ] = c ;
reader_set_buffer ( str , 0 ) ;
2012-11-18 10:23:22 +00:00
2013-11-30 07:44:26 +00:00
complete ( str , out , COMPLETION_REQUEST_DEFAULT ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
matches + = out . size ( ) ;
2012-02-06 00:42:24 +00:00
out . clear ( ) ;
2012-11-19 00:30:30 +00:00
}
t2 = get_time ( ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
t = ( double ) ( t2 - t1 ) / ( 1000000 * 26 ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
say ( L " One letter command completion took %f seconds per completion, %f microseconds/match " , t , ( double ) ( t2 - t1 ) / matches ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
matches = 0 ;
t1 = get_time ( ) ;
for ( i = 0 ; i < LAPS ; i + + )
{
str [ 0 ] = ' a ' + ( rand ( ) % 26 ) ;
str [ 1 ] = ' a ' + ( rand ( ) % 26 ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
reader_set_buffer ( str , 0 ) ;
2012-11-18 10:23:22 +00:00
2013-11-30 07:44:26 +00:00
complete ( str , out , COMPLETION_REQUEST_DEFAULT ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
matches + = out . size ( ) ;
2012-02-06 00:42:24 +00:00
out . clear ( ) ;
2012-11-19 00:30:30 +00:00
}
t2 = get_time ( ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
t = ( double ) ( t2 - t1 ) / ( 1000000 * LAPS ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
say ( L " Two letter command completion took %f seconds per completion, %f microseconds/match " , t , ( double ) ( t2 - t1 ) / matches ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
reader_pop ( ) ;
2012-11-18 10:23:22 +00:00
2005-09-20 13:26:39 +00:00
}
2012-11-19 00:30:30 +00:00
static void test_history_matches ( history_search_t & search , size_t matches )
{
2012-02-06 00:42:24 +00:00
size_t i ;
2012-11-19 00:30:30 +00:00
for ( i = 0 ; i < matches ; i + + )
{
2014-01-24 02:19:52 +00:00
do_test ( search . go_backwards ( ) ) ;
2012-02-16 08:24:27 +00:00
wcstring item = search . current_string ( ) ;
2012-02-06 00:42:24 +00:00
}
2014-01-24 02:19:52 +00:00
do_test ( ! search . go_backwards ( ) ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
for ( i = 1 ; i < matches ; i + + )
{
2014-01-24 02:19:52 +00:00
do_test ( search . go_forwards ( ) ) ;
2012-02-06 00:42:24 +00:00
}
2014-01-24 02:19:52 +00:00
do_test ( ! search . go_forwards ( ) ) ;
2012-02-06 00:42:24 +00:00
}
2012-11-19 00:30:30 +00:00
static bool history_contains ( history_t * history , const wcstring & txt )
{
2012-04-17 03:26:50 +00:00
bool result = false ;
size_t i ;
2012-11-19 00:30:30 +00:00
for ( i = 1 ; ; i + + )
{
2012-04-17 03:26:50 +00:00
history_item_t item = history - > item_at_index ( i ) ;
if ( item . empty ( ) )
break ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
if ( item . str ( ) = = txt )
{
2012-04-17 03:26:50 +00:00
result = true ;
break ;
}
}
return result ;
}
2012-11-19 00:30:30 +00:00
class history_tests_t
{
2012-02-16 08:24:27 +00:00
public :
static void test_history ( void ) ;
2012-04-17 03:26:50 +00:00
static void test_history_merge ( void ) ;
2012-06-15 23:22:37 +00:00
static void test_history_formats ( void ) ;
2012-12-03 10:25:08 +00:00
static void test_history_speed ( void ) ;
2012-12-03 07:38:38 +00:00
static void test_history_races ( void ) ;
static void test_history_races_pound_on_history ( ) ;
2012-02-16 08:24:27 +00:00
} ;
2012-11-19 00:30:30 +00:00
static wcstring random_string ( void )
{
2012-02-16 08:24:27 +00:00
wcstring result ;
size_t max = 1 + rand ( ) % 32 ;
2012-11-19 00:30:30 +00:00
while ( max - - )
{
2012-02-16 08:24:27 +00:00
wchar_t c = 1 + rand ( ) % ESCAPE_TEST_CHAR ;
result . push_back ( c ) ;
}
return result ;
}
2012-11-19 00:30:30 +00:00
void history_tests_t : : test_history ( void )
{
say ( L " Testing history " ) ;
2012-11-18 10:23:22 +00:00
2012-02-06 00:42:24 +00:00
history_t & history = history_t : : history_with_name ( L " test_history " ) ;
2012-02-16 08:24:27 +00:00
history . clear ( ) ;
2012-02-06 00:42:24 +00:00
history . add ( L " Gamma " ) ;
2012-02-06 06:48:43 +00:00
history . add ( L " Beta " ) ;
history . add ( L " Alpha " ) ;
2012-11-18 10:23:22 +00:00
2012-02-06 00:42:24 +00:00
/* All three items match "a" */
history_search_t search1 ( history , L " a " ) ;
test_history_matches ( search1 , 3 ) ;
2014-01-24 02:19:52 +00:00
do_test ( search1 . current_string ( ) = = L " Alpha " ) ;
2012-11-18 10:23:22 +00:00
2012-02-06 00:42:24 +00:00
/* One item matches "et" */
history_search_t search2 ( history , L " et " ) ;
test_history_matches ( search2 , 1 ) ;
2014-01-24 02:19:52 +00:00
do_test ( search2 . current_string ( ) = = L " Beta " ) ;
2012-06-05 04:24:42 +00:00
/* Test item removal */
history . remove ( L " Alpha " ) ;
history_search_t search3 ( history , L " Alpha " ) ;
test_history_matches ( search3 , 0 ) ;
2012-11-18 10:23:22 +00:00
2012-02-16 08:24:27 +00:00
/* Test history escaping and unescaping, yaml, etc. */
std : : vector < history_item_t > before , after ;
history . clear ( ) ;
size_t i , max = 100 ;
2012-11-19 00:30:30 +00:00
for ( i = 1 ; i < = max ; i + + )
{
2012-11-18 10:23:22 +00:00
2012-02-16 08:24:27 +00:00
/* Generate a value */
2012-03-07 08:54:01 +00:00
wcstring value = wcstring ( L " test item " ) + to_string ( i ) ;
2012-11-18 10:23:22 +00:00
2012-02-23 18:29:00 +00:00
/* Maybe add some backslashes */
if ( i % 3 = = 0 )
value . append ( L " (slashies \\ \\ \\ slashies) " ) ;
2012-02-16 08:24:27 +00:00
/* Generate some paths */
2012-11-18 10:23:22 +00:00
path_list_t paths ;
2012-02-16 08:24:27 +00:00
size_t count = rand ( ) % 6 ;
2012-11-19 00:30:30 +00:00
while ( count - - )
{
2012-07-25 05:31:31 +00:00
paths . push_back ( random_string ( ) ) ;
2012-02-16 08:24:27 +00:00
}
2012-11-18 10:23:22 +00:00
2012-02-16 08:24:27 +00:00
/* Record this item */
history_item_t item ( value , time ( NULL ) , paths ) ;
before . push_back ( item ) ;
history . add ( item ) ;
}
history . save ( ) ;
2012-11-18 10:23:22 +00:00
2012-02-16 08:24:27 +00:00
/* Read items back in reverse order and ensure they're the same */
2012-11-19 00:30:30 +00:00
for ( i = 100 ; i > = 1 ; i - - )
{
2012-02-16 08:24:27 +00:00
history_item_t item = history . item_at_index ( i ) ;
2014-01-24 02:19:52 +00:00
do_test ( ! item . empty ( ) ) ;
2012-02-16 08:24:27 +00:00
after . push_back ( item ) ;
}
2014-01-24 02:19:52 +00:00
do_test ( before . size ( ) = = after . size ( ) ) ;
2012-11-19 00:30:30 +00:00
for ( size_t i = 0 ; i < before . size ( ) ; i + + )
{
2012-02-16 08:24:27 +00:00
const history_item_t & bef = before . at ( i ) , & aft = after . at ( i ) ;
2014-01-24 02:19:52 +00:00
do_test ( bef . contents = = aft . contents ) ;
do_test ( bef . creation_timestamp = = aft . creation_timestamp ) ;
do_test ( bef . required_paths = = aft . required_paths ) ;
2012-02-16 08:24:27 +00:00
}
2012-11-18 10:23:22 +00:00
2012-04-17 03:26:50 +00:00
/* Clean up after our tests */
history . clear ( ) ;
}
// wait until the next second
2012-11-19 00:30:30 +00:00
static void time_barrier ( void )
{
2012-04-17 03:26:50 +00:00
time_t start = time ( NULL ) ;
2012-11-19 00:30:30 +00:00
do
{
2012-04-17 03:26:50 +00:00
usleep ( 1000 ) ;
2012-11-19 00:30:30 +00:00
}
while ( time ( NULL ) = = start ) ;
2012-04-17 03:26:50 +00:00
}
2012-12-03 07:38:38 +00:00
static wcstring_list_t generate_history_lines ( int pid )
{
wcstring_list_t result ;
long max = 256 ;
result . reserve ( max ) ;
for ( long i = 0 ; i < max ; i + + )
{
result . push_back ( format_string ( L " %ld %ld " , ( long ) pid , i ) ) ;
}
return result ;
}
void history_tests_t : : test_history_races_pound_on_history ( )
{
/* Called in child process to modify history */
history_t * hist = new history_t ( L " race_test " ) ;
hist - > chaos_mode = true ;
const wcstring_list_t lines = generate_history_lines ( getpid ( ) ) ;
for ( size_t idx = 0 ; idx < lines . size ( ) ; idx + + )
{
const wcstring & line = lines . at ( idx ) ;
hist - > add ( line ) ;
hist - > save ( ) ;
}
delete hist ;
}
void history_tests_t : : test_history_races ( void )
{
say ( L " Testing history race conditions " ) ;
2012-12-03 10:25:08 +00:00
2012-12-03 07:38:38 +00:00
// Ensure history is clear
history_t * hist = new history_t ( L " race_test " ) ;
hist - > clear ( ) ;
delete hist ;
2012-12-03 10:25:08 +00:00
2012-12-03 07:38:38 +00:00
// Test concurrent history writing
2012-12-03 09:53:52 +00:00
# define RACE_COUNT 10
2012-12-03 07:38:38 +00:00
pid_t children [ RACE_COUNT ] ;
2012-12-03 10:25:08 +00:00
2012-12-03 07:38:38 +00:00
for ( size_t i = 0 ; i < RACE_COUNT ; i + + )
{
pid_t pid = fork ( ) ;
if ( ! pid )
{
// Child process
setup_fork_guards ( ) ;
test_history_races_pound_on_history ( ) ;
exit_without_destructors ( 0 ) ;
}
else
{
// Parent process
children [ i ] = pid ;
}
}
2012-12-03 10:25:08 +00:00
2012-12-03 07:38:38 +00:00
// Wait for all children
for ( size_t i = 0 ; i < RACE_COUNT ; i + + )
{
int stat ;
waitpid ( children [ i ] , & stat , WUNTRACED ) ;
}
2012-12-03 10:25:08 +00:00
2012-12-03 07:38:38 +00:00
// Compute the expected lines
wcstring_list_t lines [ RACE_COUNT ] ;
for ( size_t i = 0 ; i < RACE_COUNT ; i + + )
{
lines [ i ] = generate_history_lines ( children [ i ] ) ;
}
2012-12-03 10:25:08 +00:00
2012-12-03 07:38:38 +00:00
// Count total lines
size_t line_count = 0 ;
for ( size_t i = 0 ; i < RACE_COUNT ; i + + )
{
line_count + = lines [ i ] . size ( ) ;
}
// Ensure we consider the lines that have been outputted as part of our history
time_barrier ( ) ;
2012-12-03 10:25:08 +00:00
2012-12-03 07:38:38 +00:00
/* Ensure that we got sane, sorted results */
hist = new history_t ( L " race_test " ) ;
hist - > chaos_mode = true ;
size_t hist_idx ;
for ( hist_idx = 1 ; ; hist_idx + + )
{
history_item_t item = hist - > item_at_index ( hist_idx ) ;
if ( item . empty ( ) )
break ;
2012-12-03 10:25:08 +00:00
2012-12-03 07:38:38 +00:00
// The item must be present in one of our 'lines' arrays
// If it is present, then every item after it is assumed to be missed
size_t i ;
for ( i = 0 ; i < RACE_COUNT ; i + + )
{
wcstring_list_t : : iterator where = std : : find ( lines [ i ] . begin ( ) , lines [ i ] . end ( ) , item . str ( ) ) ;
if ( where ! = lines [ i ] . end ( ) )
{
// Delete everything from the found location onwards
lines [ i ] . resize ( where - lines [ i ] . begin ( ) ) ;
2012-12-03 10:25:08 +00:00
2012-12-03 07:38:38 +00:00
// Break because we found it
break ;
}
}
2012-12-03 09:53:52 +00:00
if ( i > = RACE_COUNT )
{
err ( L " Line '%ls' found in history not found in some array " , item . str ( ) . c_str ( ) ) ;
}
2012-12-03 07:38:38 +00:00
}
// every write should add at least one item
2014-01-24 02:19:52 +00:00
do_test ( hist_idx > = RACE_COUNT ) ;
2012-12-03 10:25:08 +00:00
2012-12-03 07:38:38 +00:00
//hist->clear();
delete hist ;
}
2012-11-19 00:30:30 +00:00
void history_tests_t : : test_history_merge ( void )
{
2012-04-17 03:26:50 +00:00
// In a single fish process, only one history is allowed to exist with the given name
// But it's common to have multiple history instances with the same name active in different processes,
// e.g. when you have multiple shells open.
// We try to get that right and merge all their history together. Test that case.
2012-11-19 00:30:30 +00:00
say ( L " Testing history merge " ) ;
2012-04-17 03:26:50 +00:00
const size_t count = 3 ;
const wcstring name = L " merge_test " ;
history_t * hists [ count ] = { new history_t ( name ) , new history_t ( name ) , new history_t ( name ) } ;
wcstring texts [ count ] = { L " History 1 " , L " History 2 " , L " History 3 " } ;
2012-11-18 10:23:22 +00:00
2012-04-17 03:26:50 +00:00
/* Make sure history is clear */
2012-11-19 00:30:30 +00:00
for ( size_t i = 0 ; i < count ; i + + )
{
2012-04-17 03:26:50 +00:00
hists [ i ] - > clear ( ) ;
}
2012-11-18 10:23:22 +00:00
2012-04-17 03:26:50 +00:00
/* Make sure we don't add an item in the same second as we created the history */
time_barrier ( ) ;
2012-11-18 10:23:22 +00:00
2012-04-17 03:26:50 +00:00
/* Add a different item to each */
2012-11-19 00:30:30 +00:00
for ( size_t i = 0 ; i < count ; i + + )
{
2012-04-17 03:26:50 +00:00
hists [ i ] - > add ( texts [ i ] ) ;
}
2012-11-18 10:23:22 +00:00
2012-04-17 03:26:50 +00:00
/* Save them */
2012-11-19 00:30:30 +00:00
for ( size_t i = 0 ; i < count ; i + + )
{
2012-04-17 03:26:50 +00:00
hists [ i ] - > save ( ) ;
}
2012-11-18 10:23:22 +00:00
2012-04-17 03:26:50 +00:00
/* Make sure each history contains what it ought to, but they have not leaked into each other */
2012-11-19 00:30:30 +00:00
for ( size_t i = 0 ; i < count ; i + + )
{
for ( size_t j = 0 ; j < count ; j + + )
{
2012-04-17 03:26:50 +00:00
bool does_contain = history_contains ( hists [ i ] , texts [ j ] ) ;
bool should_contain = ( i = = j ) ;
2014-01-24 02:19:52 +00:00
do_test ( should_contain = = does_contain ) ;
2012-04-17 03:26:50 +00:00
}
}
2012-11-18 10:23:22 +00:00
2012-04-17 03:26:50 +00:00
/* Make a new history. It should contain everything. The time_barrier() is so that the timestamp is newer, since we only pick up items whose timestamp is before the birth stamp. */
time_barrier ( ) ;
history_t * everything = new history_t ( name ) ;
2012-11-19 00:30:30 +00:00
for ( size_t i = 0 ; i < count ; i + + )
{
2014-01-24 02:19:52 +00:00
do_test ( history_contains ( everything , texts [ i ] ) ) ;
2012-04-17 03:26:50 +00:00
}
/* Clean up */
2012-11-19 00:30:30 +00:00
for ( size_t i = 0 ; i < 3 ; i + + )
{
2012-04-17 03:26:50 +00:00
delete hists [ i ] ;
}
everything - > clear ( ) ;
delete everything ; //not as scary as it looks
2012-02-06 00:42:24 +00:00
}
2012-11-19 00:30:30 +00:00
static bool install_sample_history ( const wchar_t * name )
{
2012-06-15 23:22:37 +00:00
char command [ 512 ] ;
2012-11-18 10:23:22 +00:00
snprintf ( command , sizeof command , " cp tests/%ls ~/.config/fish/%ls_history " , name , name ) ;
2012-11-19 00:30:30 +00:00
if ( system ( command ) )
{
2012-06-15 23:22:37 +00:00
err ( L " Failed to copy sample history " ) ;
return false ;
}
return true ;
}
/* Indicates whether the history is equal to the given null-terminated array of strings. */
2012-11-19 00:30:30 +00:00
static bool history_equals ( history_t & hist , const wchar_t * const * strings )
{
2012-06-15 23:22:37 +00:00
/* Count our expected items */
size_t expected_count = 0 ;
2012-11-19 00:30:30 +00:00
while ( strings [ expected_count ] )
{
2012-06-15 23:22:37 +00:00
expected_count + + ;
}
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
/* Ensure the contents are the same */
size_t history_idx = 1 ;
size_t array_idx = 0 ;
2012-11-19 00:30:30 +00:00
for ( ; ; )
{
2012-06-15 23:22:37 +00:00
const wchar_t * expected = strings [ array_idx ] ;
history_item_t item = hist . item_at_index ( history_idx ) ;
2012-11-19 00:30:30 +00:00
if ( expected = = NULL )
{
if ( ! item . empty ( ) )
{
2012-06-15 23:22:37 +00:00
err ( L " Expected empty item at history index %lu " , history_idx ) ;
}
break ;
2012-11-19 00:30:30 +00:00
}
else
{
if ( item . str ( ) ! = expected )
{
2012-06-15 23:22:37 +00:00
err ( L " Expected '%ls', found '%ls' at index %lu " , expected , item . str ( ) . c_str ( ) , history_idx ) ;
}
}
history_idx + + ;
array_idx + + ;
}
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
return true ;
}
2012-11-19 00:30:30 +00:00
void history_tests_t : : test_history_formats ( void )
{
2012-06-15 23:22:37 +00:00
const wchar_t * name ;
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
// Test inferring and reading legacy and bash history formats
name = L " history_sample_fish_1_x " ;
say ( L " Testing %ls " , name ) ;
2012-11-19 00:30:30 +00:00
if ( ! install_sample_history ( name ) )
{
2012-06-15 23:22:37 +00:00
err ( L " Couldn't open file tests/%ls " , name ) ;
2012-11-19 00:30:30 +00:00
}
else
{
2012-06-15 23:22:37 +00:00
/* Note: This is backwards from what appears in the file */
2012-11-19 00:30:30 +00:00
const wchar_t * const expected [ ] =
{
2012-06-15 23:22:37 +00:00
L " #def " ,
L " echo #abc " ,
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
L " function yay \n "
" echo hi \n "
" end " ,
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
L " cd foobar " ,
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
L " ls / " ,
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
NULL
} ;
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
history_t & test_history = history_t : : history_with_name ( name ) ;
2012-11-19 00:30:30 +00:00
if ( ! history_equals ( test_history , expected ) )
{
2012-06-15 23:22:37 +00:00
err ( L " test_history_formats failed for %ls \n " , name ) ;
}
test_history . clear ( ) ;
}
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
name = L " history_sample_fish_2_0 " ;
say ( L " Testing %ls " , name ) ;
2012-11-19 00:30:30 +00:00
if ( ! install_sample_history ( name ) )
{
2012-06-15 23:22:37 +00:00
err ( L " Couldn't open file tests/%ls " , name ) ;
2012-11-19 00:30:30 +00:00
}
else
{
const wchar_t * const expected [ ] =
{
2012-06-15 23:22:37 +00:00
L " echo this has \\ \n backslashes " ,
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
L " function foo \n "
" echo bar \n "
" end " ,
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
L " echo alpha " ,
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
NULL
} ;
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
history_t & test_history = history_t : : history_with_name ( name ) ;
2012-11-19 00:30:30 +00:00
if ( ! history_equals ( test_history , expected ) )
{
2012-06-15 23:22:37 +00:00
err ( L " test_history_formats failed for %ls \n " , name ) ;
}
test_history . clear ( ) ;
}
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
say ( L " Testing bash import " ) ;
FILE * f = fopen ( " tests/history_sample_bash " , " r " ) ;
2012-11-19 00:30:30 +00:00
if ( ! f )
{
2012-06-15 23:22:37 +00:00
err ( L " Couldn't open file tests/history_sample_bash " ) ;
2012-11-19 00:30:30 +00:00
}
else
{
2012-06-15 23:22:37 +00:00
// It should skip over the export command since that's a bash-ism
2012-11-19 00:30:30 +00:00
const wchar_t * expected [ ] =
{
2012-06-15 23:22:37 +00:00
L " echo supsup " ,
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
L " history --help " ,
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
L " echo foo " ,
2012-11-18 10:23:22 +00:00
2012-06-15 23:22:37 +00:00
NULL
} ;
history_t & test_history = history_t : : history_with_name ( L " bash_import " ) ;
test_history . populate_from_bash ( f ) ;
2012-11-19 00:30:30 +00:00
if ( ! history_equals ( test_history , expected ) )
{
2012-06-15 23:22:37 +00:00
err ( L " test_history_formats failed for bash import \n " ) ;
}
test_history . clear ( ) ;
fclose ( f ) ;
}
}
2012-12-03 10:25:08 +00:00
void history_tests_t : : test_history_speed ( void )
{
2013-04-27 22:21:14 +00:00
say ( L " Testing history speed (pid is %d) " , getpid ( ) ) ;
2012-12-03 10:25:08 +00:00
history_t * hist = new history_t ( L " speed_test " ) ;
wcstring item = L " History Speed Test - X " ;
/* Test for 10 seconds */
double start = timef ( ) ;
2013-04-27 22:21:14 +00:00
double end = start + 10 ;
2012-12-03 10:25:08 +00:00
double stop = 0 ;
size_t count = 0 ;
for ( ; ; )
{
item [ item . size ( ) - 1 ] = L ' 0 ' + ( count % 10 ) ;
hist - > add ( item ) ;
count + + ;
stop = timef ( ) ;
if ( stop > = end )
break ;
}
printf ( " %lu items - %.2f msec per item \n " , ( unsigned long ) count , ( stop - start ) * 1E6 / count ) ;
hist - > clear ( ) ;
delete hist ;
}
2013-08-08 22:06:46 +00:00
static void test_new_parser_correctness ( void )
{
say ( L " Testing new parser! " ) ;
const struct parser_test_t
{
const wchar_t * src ;
bool ok ;
}
parser_tests [ ] =
{
{ L " ; ; ; " , true } ,
{ L " if ; end " , false } ,
{ L " if true ; end " , true } ,
{ L " if true; end ; end " , false } ,
{ L " if end; end ; end " , false } ,
2013-08-11 07:35:00 +00:00
{ L " if end " , false } ,
{ L " end " , false } ,
{ L " for i i " , false } ,
{ L " for i in a b c ; end " , true }
2013-08-08 22:06:46 +00:00
} ;
2013-08-11 07:35:00 +00:00
2013-08-08 22:06:46 +00:00
for ( size_t i = 0 ; i < sizeof parser_tests / sizeof * parser_tests ; i + + )
{
const parser_test_t * test = & parser_tests [ i ] ;
2013-08-11 07:35:00 +00:00
2013-08-08 22:06:46 +00:00
parse_node_tree_t parse_tree ;
2014-01-13 06:39:12 +00:00
bool success = parse_tree_from_string ( test - > src , parse_flag_none , & parse_tree , NULL ) ;
2013-08-08 22:06:46 +00:00
say ( L " %lu / %lu: Parse \" %ls \" : %s " , i + 1 , sizeof parser_tests / sizeof * parser_tests , test - > src , success ? " yes " : " no " ) ;
if ( success & & ! test - > ok )
{
err ( L " \" %ls \" should NOT have parsed, but did " , test - > src ) ;
}
else if ( ! success & & test - > ok )
{
err ( L " \" %ls \" should have parsed, but failed " , test - > src ) ;
}
}
say ( L " Parse tests complete " ) ;
2013-08-11 07:35:00 +00:00
}
2014-01-13 06:39:12 +00:00
/* Given that we have an array of 'fuzz_count' strings, we wish to enumerate all permutations of 'len' values. We do this by incrementing an integer, interpreting it as "base fuzz_count". */
static inline bool string_for_permutation ( const wcstring * fuzzes , size_t fuzz_count , size_t len , size_t permutation , wcstring * out_str )
2013-08-11 07:35:00 +00:00
{
2014-01-13 06:39:12 +00:00
out_str - > clear ( ) ;
2014-01-15 09:40:40 +00:00
2014-01-13 06:39:12 +00:00
size_t remaining_permutation = permutation ;
for ( size_t i = 0 ; i < len ; i + + )
2013-08-11 07:35:00 +00:00
{
2014-01-13 06:39:12 +00:00
size_t idx = remaining_permutation % fuzz_count ;
remaining_permutation / = fuzz_count ;
2014-01-15 09:40:40 +00:00
2014-01-13 06:39:12 +00:00
out_str - > append ( fuzzes [ idx ] ) ;
out_str - > push_back ( L ' ' ) ;
2013-08-11 07:35:00 +00:00
}
2014-01-13 06:39:12 +00:00
// Return false if we wrapped
return remaining_permutation = = 0 ;
2013-08-11 07:35:00 +00:00
}
static void test_new_parser_fuzzing ( void )
{
say ( L " Fuzzing parser (node size: %lu) " , sizeof ( parse_node_t ) ) ;
2014-01-13 06:39:12 +00:00
const wcstring fuzzes [ ] =
{
L " if " ,
L " else " ,
L " for " ,
L " in " ,
L " while " ,
L " begin " ,
L " function " ,
L " switch " ,
L " case " ,
L " end " ,
L " and " ,
L " or " ,
L " not " ,
L " command " ,
L " builtin " ,
L " foo " ,
L " | " ,
L " ^ " ,
L " & " ,
L " ; " ,
} ;
2014-01-15 09:40:40 +00:00
2014-01-13 06:39:12 +00:00
/* Generate a list of strings of all keyword / token combinations. */
wcstring src ;
src . reserve ( 128 ) ;
2014-01-15 09:40:40 +00:00
2014-01-13 06:39:12 +00:00
parse_node_tree_t node_tree ;
parse_error_list_t errors ;
2013-08-11 07:35:00 +00:00
double start = timef ( ) ;
2014-01-13 06:39:12 +00:00
bool log_it = true ;
2014-01-15 14:36:50 +00:00
unsigned long max_len = 5 ;
for ( unsigned long len = 0 ; len < max_len ; len + + )
2013-08-11 07:35:00 +00:00
{
2013-11-26 08:01:23 +00:00
if ( log_it )
2014-01-13 06:39:12 +00:00
fprintf ( stderr , " %lu / %lu... " , len , max_len ) ;
2013-08-11 07:35:00 +00:00
2014-01-13 06:39:12 +00:00
/* We wish to look at all permutations of 4 elements of 'fuzzes' (with replacement). Construct an int and keep incrementing it. */
2014-01-15 14:36:50 +00:00
unsigned long permutation = 0 ;
2014-01-13 06:39:12 +00:00
while ( string_for_permutation ( fuzzes , sizeof fuzzes / sizeof * fuzzes , len , permutation + + , & src ) )
{
parse_tree_from_string ( src , parse_flag_continue_after_error , & node_tree , & errors ) ;
2013-08-11 07:35:00 +00:00
}
2013-11-26 08:01:23 +00:00
if ( log_it )
2014-01-13 06:39:12 +00:00
fprintf ( stderr , " done (%lu) \n " , permutation ) ;
2014-01-15 09:40:40 +00:00
2013-08-11 07:35:00 +00:00
}
double end = timef ( ) ;
2013-11-26 08:01:23 +00:00
if ( log_it )
say ( L " All fuzzed in %f seconds! " , end - start ) ;
2013-08-08 22:06:46 +00:00
}
2013-10-09 22:57:10 +00:00
// Parse a statement, returning the command, args (joined by spaces), and the decoration. Returns true if successful.
static bool test_1_parse_ll2 ( const wcstring & src , wcstring * out_cmd , wcstring * out_joined_args , enum parse_statement_decoration_t * out_deco )
{
out_cmd - > clear ( ) ;
out_joined_args - > clear ( ) ;
* out_deco = parse_statement_decoration_none ;
2014-01-15 09:40:40 +00:00
2013-10-09 22:57:10 +00:00
bool result = false ;
parse_node_tree_t tree ;
2014-01-13 06:39:12 +00:00
if ( parse_tree_from_string ( src , parse_flag_none , & tree , NULL ) )
2013-10-09 22:57:10 +00:00
{
/* Get the statement. Should only have one */
const parse_node_tree_t : : parse_node_list_t stmt_nodes = tree . find_nodes ( tree . at ( 0 ) , symbol_plain_statement ) ;
if ( stmt_nodes . size ( ) ! = 1 )
{
say ( L " Unexpected number of statements (%lu) found in '%ls' " , stmt_nodes . size ( ) , src . c_str ( ) ) ;
return false ;
}
const parse_node_t & stmt = * stmt_nodes . at ( 0 ) ;
2014-01-15 09:40:40 +00:00
2013-10-09 22:57:10 +00:00
/* Return its decoration */
* out_deco = tree . decoration_for_plain_statement ( stmt ) ;
2014-01-15 09:40:40 +00:00
2013-10-09 22:57:10 +00:00
/* Return its command */
tree . command_for_plain_statement ( stmt , src , out_cmd ) ;
2014-01-15 09:40:40 +00:00
2013-10-09 22:57:10 +00:00
/* Return arguments separated by spaces */
const parse_node_tree_t : : parse_node_list_t arg_nodes = tree . find_nodes ( stmt , symbol_argument ) ;
for ( size_t i = 0 ; i < arg_nodes . size ( ) ; i + + )
{
if ( i > 0 ) out_joined_args - > push_back ( L ' ' ) ;
out_joined_args - > append ( arg_nodes . at ( i ) - > get_source ( src ) ) ;
}
result = true ;
}
return result ;
}
/* Test the LL2 (two token lookahead) nature of the parser by exercising the special builtin and command handling. In particular, 'command foo' should be a decorated statement 'foo' but 'command --help' should be an undecorated statement 'command' with argument '--help', and NOT attempt to run a command called '--help' */
static void test_new_parser_ll2 ( void )
{
say ( L " Testing parser two-token lookahead " ) ;
2014-01-15 09:40:40 +00:00
2013-10-09 22:57:10 +00:00
const struct
{
wcstring src ;
wcstring cmd ;
wcstring args ;
enum parse_statement_decoration_t deco ;
} tests [ ] =
{
{ L " echo hello " , L " echo " , L " hello " , parse_statement_decoration_none } ,
{ L " command echo hello " , L " echo " , L " hello " , parse_statement_decoration_command } ,
{ L " command command hello " , L " command " , L " hello " , parse_statement_decoration_command } ,
{ L " builtin command hello " , L " command " , L " hello " , parse_statement_decoration_builtin } ,
{ L " command --help " , L " command " , L " --help " , parse_statement_decoration_none } ,
{ L " command -h " , L " command " , L " -h " , parse_statement_decoration_none } ,
{ L " command " , L " command " , L " " , parse_statement_decoration_none } ,
2013-10-12 08:46:22 +00:00
{ L " command - " , L " command " , L " - " , parse_statement_decoration_none } ,
{ L " command -- " , L " command " , L " -- " , parse_statement_decoration_none } ,
2013-10-12 09:46:49 +00:00
{ L " builtin --names " , L " builtin " , L " --names " , parse_statement_decoration_none } ,
2013-10-09 22:57:10 +00:00
{ L " function " , L " function " , L " " , parse_statement_decoration_none } ,
{ L " function --help " , L " function " , L " --help " , parse_statement_decoration_none }
} ;
2014-01-15 09:40:40 +00:00
2013-10-09 22:57:10 +00:00
for ( size_t i = 0 ; i < sizeof tests / sizeof * tests ; i + + )
{
wcstring cmd , args ;
enum parse_statement_decoration_t deco = parse_statement_decoration_none ;
bool success = test_1_parse_ll2 ( tests [ i ] . src , & cmd , & args , & deco ) ;
if ( ! success )
err ( L " Parse of '%ls' failed on line %ld " , tests [ i ] . cmd . c_str ( ) , ( long ) __LINE__ ) ;
if ( cmd ! = tests [ i ] . cmd )
err ( L " When parsing '%ls', expected command '%ls' but got '%ls' on line %ld " , tests [ i ] . src . c_str ( ) , tests [ i ] . cmd . c_str ( ) , cmd . c_str ( ) , ( long ) __LINE__ ) ;
if ( args ! = tests [ i ] . args )
err ( L " When parsing '%ls', expected args '%ls' but got '%ls' on line %ld " , tests [ i ] . src . c_str ( ) , tests [ i ] . args . c_str ( ) , args . c_str ( ) , ( long ) __LINE__ ) ;
if ( deco ! = tests [ i ] . deco )
err ( L " When parsing '%ls', expected decoration %d but got %d on line %ld " , tests [ i ] . src . c_str ( ) , ( int ) tests [ i ] . deco , ( int ) deco , ( long ) __LINE__ ) ;
}
2014-01-15 09:40:40 +00:00
2014-01-14 10:29:53 +00:00
/* Verify that 'function -h' and 'function --help' are plain statements but 'function --foo' is not (#1240) */
const struct
{
wcstring src ;
parse_token_type_t type ;
}
tests2 [ ] =
{
{ L " function -h " , symbol_plain_statement } ,
{ L " function --help " , symbol_plain_statement } ,
{ L " function --foo ; end " , symbol_function_header } ,
{ L " function foo ; end " , symbol_function_header } ,
} ;
for ( size_t i = 0 ; i < sizeof tests2 / sizeof * tests2 ; i + + )
{
parse_node_tree_t tree ;
if ( ! parse_tree_from_string ( tests2 [ i ] . src , parse_flag_none , & tree , NULL ) )
{
err ( L " Failed to parse '%ls' " , tests2 [ i ] . src . c_str ( ) ) ;
}
2014-01-15 09:40:40 +00:00
2014-01-14 10:29:53 +00:00
const parse_node_tree_t : : parse_node_list_t node_list = tree . find_nodes ( tree . at ( 0 ) , tests2 [ i ] . type ) ;
if ( node_list . size ( ) = = 0 )
{
err ( L " Failed to find node of type '%ls' " , token_type_description ( tests2 [ i ] . type ) . c_str ( ) ) ;
}
else if ( node_list . size ( ) > 1 )
{
err ( L " Found too many nodes of type '%ls' " , token_type_description ( tests2 [ i ] . type ) . c_str ( ) ) ;
}
}
2013-10-09 22:57:10 +00:00
}
2013-12-09 05:54:06 +00:00
static void test_new_parser_ad_hoc ( )
2013-06-09 02:20:26 +00:00
{
2013-12-08 21:41:12 +00:00
/* Very ad-hoc tests for issues encountered */
say ( L " Testing new parser ad hoc tests " ) ;
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
/* Ensure that 'case' terminates a job list */
const wcstring src = L " switch foo ; case bar; case baz; end " ;
2013-06-15 21:32:38 +00:00
parse_node_tree_t parse_tree ;
2014-01-13 06:39:12 +00:00
bool success = parse_tree_from_string ( src , parse_flag_none , & parse_tree , NULL ) ;
2013-06-15 22:21:35 +00:00
if ( ! success )
{
2013-12-08 21:41:12 +00:00
err ( L " Parsing failed " ) ;
2013-06-15 22:21:35 +00:00
}
2014-01-15 09:40:40 +00:00
2013-12-08 21:41:12 +00:00
/* Expect three case_item_lists: one for each case, and a terminal one. The bug was that we'd try to run a command 'case' */
const parse_node_t & root = parse_tree . at ( 0 ) ;
const parse_node_tree_t : : parse_node_list_t node_list = parse_tree . find_nodes ( root , symbol_case_item_list ) ;
if ( node_list . size ( ) ! = 3 )
2013-06-15 22:21:35 +00:00
{
2013-12-08 21:41:12 +00:00
err ( L " Expected 3 case item nodes, found %lu " , node_list . size ( ) ) ;
2013-06-15 22:21:35 +00:00
}
2013-06-09 02:20:26 +00:00
}
2007-05-10 19:11:28 +00:00
2013-12-09 05:54:06 +00:00
static void test_new_parser_errors ( void )
{
say ( L " Testing new parser error reporting " ) ;
const struct
{
const wchar_t * src ;
parse_error_code_t code ;
}
tests [ ] =
{
2014-01-14 08:01:26 +00:00
{ L " echo 'abc " , parse_error_tokenizer_unterminated_quote } ,
2014-01-14 08:38:55 +00:00
{ L " ' " , parse_error_tokenizer_unterminated_quote } ,
2014-01-14 08:01:26 +00:00
{ L " echo (abc " , parse_error_tokenizer_unterminated_subshell } ,
2014-01-15 09:40:40 +00:00
2013-12-09 05:54:06 +00:00
{ L " end " , parse_error_unbalancing_end } ,
{ L " echo hi ; end " , parse_error_unbalancing_end } ,
2014-01-15 09:40:40 +00:00
2013-12-09 05:54:06 +00:00
{ L " else " , parse_error_unbalancing_else } ,
{ L " if true ; end ; else " , parse_error_unbalancing_else } ,
2014-01-15 09:40:40 +00:00
2013-12-09 05:54:06 +00:00
{ L " case " , parse_error_unbalancing_case } ,
2014-01-13 10:24:11 +00:00
{ L " if true ; case ; end " , parse_error_unbalancing_case } ,
2014-01-15 09:40:40 +00:00
2014-01-13 10:24:11 +00:00
{ L " foo || bar " , parse_error_double_pipe } ,
{ L " foo && bar " , parse_error_double_background } ,
2013-12-09 05:54:06 +00:00
} ;
2014-01-15 09:40:40 +00:00
2013-12-09 05:54:06 +00:00
for ( size_t i = 0 ; i < sizeof tests / sizeof * tests ; i + + )
{
const wcstring src = tests [ i ] . src ;
parse_error_code_t expected_code = tests [ i ] . code ;
2014-01-15 09:40:40 +00:00
2013-12-09 05:54:06 +00:00
parse_error_list_t errors ;
parse_node_tree_t parse_tree ;
2014-01-13 06:39:12 +00:00
bool success = parse_tree_from_string ( src , parse_flag_none , & parse_tree , & errors ) ;
2013-12-09 05:54:06 +00:00
if ( success )
{
err ( L " Source '%ls' was expected to fail to parse, but succeeded " , src . c_str ( ) ) ;
}
2014-01-15 09:40:40 +00:00
2013-12-09 05:54:06 +00:00
if ( errors . size ( ) ! = 1 )
{
err ( L " Source '%ls' was expected to produce 1 error, but instead produced %lu errors " , src . c_str ( ) , errors . size ( ) ) ;
}
else if ( errors . at ( 0 ) . code ! = expected_code )
{
err ( L " Source '%ls' was expected to produce error code %lu, but instead produced error code %lu " , src . c_str ( ) , expected_code , ( unsigned long ) errors . at ( 0 ) . code ) ;
for ( size_t i = 0 ; i < errors . size ( ) ; i + + )
{
err ( L " \t \t %ls " , errors . at ( i ) . describe ( src ) . c_str ( ) ) ;
}
}
2014-01-15 09:40:40 +00:00
2013-12-09 05:54:06 +00:00
}
2014-01-15 09:40:40 +00:00
2013-12-09 05:54:06 +00:00
}
2013-08-11 07:35:00 +00:00
static void test_highlighting ( void )
{
say ( L " Testing syntax highlighting " ) ;
if ( system ( " mkdir -p /tmp/fish_highlight_test/ " ) ) err ( L " mkdir failed " ) ;
if ( system ( " touch /tmp/fish_highlight_test/foo " ) ) err ( L " touch failed " ) ;
if ( system ( " touch /tmp/fish_highlight_test/bar " ) ) err ( L " touch failed " ) ;
2014-01-15 09:40:40 +00:00
2013-08-11 07:35:00 +00:00
// Here are the components of our source and the colors we expect those to be
2014-01-15 09:40:40 +00:00
struct highlight_component_t
{
2013-08-11 07:35:00 +00:00
const wchar_t * txt ;
int color ;
} ;
2014-01-15 09:40:40 +00:00
2013-08-11 07:35:00 +00:00
const highlight_component_t components1 [ ] =
{
2014-01-15 09:01:25 +00:00
{ L " echo " , highlight_spec_command } ,
{ L " /tmp/fish_highlight_test/foo " , highlight_spec_param | highlight_modifier_valid_path } ,
{ L " & " , highlight_spec_statement_terminator } ,
2013-08-11 07:35:00 +00:00
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-08-11 07:35:00 +00:00
const highlight_component_t components2 [ ] =
{
2014-01-15 09:01:25 +00:00
{ L " command " , highlight_spec_command } ,
{ L " echo " , highlight_spec_command } ,
{ L " abc " , highlight_spec_param } ,
{ L " /tmp/fish_highlight_test/foo " , highlight_spec_param | highlight_modifier_valid_path } ,
{ L " & " , highlight_spec_statement_terminator } ,
2013-08-11 07:35:00 +00:00
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-08-11 07:35:00 +00:00
const highlight_component_t components3 [ ] =
{
2014-01-15 09:01:25 +00:00
{ L " if command ls " , highlight_spec_command } ,
{ L " ; " , highlight_spec_statement_terminator } ,
{ L " echo " , highlight_spec_command } ,
{ L " abc " , highlight_spec_param } ,
{ L " ; " , highlight_spec_statement_terminator } ,
{ L " /bin/definitely_not_a_command " , highlight_spec_error } ,
{ L " ; " , highlight_spec_statement_terminator } ,
{ L " end " , highlight_spec_command } ,
2013-08-11 07:35:00 +00:00
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-10-07 10:56:09 +00:00
/* Verify that cd shows errors for non-directories */
const highlight_component_t components4 [ ] =
{
2014-01-15 09:01:25 +00:00
{ L " cd " , highlight_spec_command } ,
{ L " /tmp/fish_highlight_test " , highlight_spec_param | highlight_modifier_valid_path } ,
2013-10-07 10:56:09 +00:00
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-10-07 10:56:09 +00:00
const highlight_component_t components5 [ ] =
{
2014-01-15 09:01:25 +00:00
{ L " cd " , highlight_spec_command } ,
{ L " /tmp/fish_highlight_test/foo " , highlight_spec_error } ,
2013-10-07 10:56:09 +00:00
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-10-07 10:56:09 +00:00
const highlight_component_t components6 [ ] =
{
2014-01-15 09:01:25 +00:00
{ L " cd " , highlight_spec_command } ,
{ L " --help " , highlight_spec_param } ,
{ L " -h " , highlight_spec_param } ,
{ L " definitely_not_a_directory " , highlight_spec_error } ,
2013-10-07 10:56:09 +00:00
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-10-09 01:41:35 +00:00
// Command substitutions
const highlight_component_t components7 [ ] =
{
2014-01-15 09:01:25 +00:00
{ L " echo " , highlight_spec_command } ,
{ L " param1 " , highlight_spec_param } ,
{ L " ( " , highlight_spec_operator } ,
{ L " ls " , highlight_spec_command } ,
{ L " param2 " , highlight_spec_param } ,
{ L " ) " , highlight_spec_operator } ,
2013-10-09 01:41:35 +00:00
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-10-13 23:58:40 +00:00
// Redirections substitutions
const highlight_component_t components8 [ ] =
{
2014-01-15 09:01:25 +00:00
{ L " echo " , highlight_spec_command } ,
{ L " param1 " , highlight_spec_param } ,
2014-01-15 09:40:40 +00:00
2013-10-13 23:58:40 +00:00
/* Input redirection */
2014-01-15 09:01:25 +00:00
{ L " < " , highlight_spec_redirection } ,
{ L " /bin/echo " , highlight_spec_redirection } ,
2014-01-15 09:40:40 +00:00
2013-10-13 23:58:40 +00:00
/* Output redirection to a valid fd */
2014-01-15 09:01:25 +00:00
{ L " 1>&2 " , highlight_spec_redirection } ,
2014-01-15 09:40:40 +00:00
2013-10-13 23:58:40 +00:00
/* Output redirection to an invalid fd */
2014-01-15 09:01:25 +00:00
{ L " 2>& " , highlight_spec_redirection } ,
{ L " LOL " , highlight_spec_error } ,
2013-10-13 23:58:40 +00:00
/* Just a param, not a redirection */
2014-01-15 09:01:25 +00:00
{ L " /tmp/blah " , highlight_spec_param } ,
2014-01-15 09:40:40 +00:00
2013-10-13 23:58:40 +00:00
/* Input redirection from directory */
2014-01-15 09:01:25 +00:00
{ L " < " , highlight_spec_redirection } ,
{ L " /tmp/ " , highlight_spec_error } ,
2014-01-15 09:40:40 +00:00
2013-10-13 23:58:40 +00:00
/* Output redirection to an invalid path */
2014-01-15 09:01:25 +00:00
{ L " 3> " , highlight_spec_redirection } ,
{ L " /not/a/valid/path/nope " , highlight_spec_error } ,
2014-01-15 09:40:40 +00:00
2013-10-13 23:58:40 +00:00
/* Output redirection to directory */
2014-01-15 09:01:25 +00:00
{ L " 3> " , highlight_spec_redirection } ,
{ L " /tmp/nope/ " , highlight_spec_error } ,
2013-10-13 23:58:40 +00:00
2014-01-15 09:40:40 +00:00
2013-10-13 23:58:40 +00:00
/* Redirections to overflow fd */
2014-01-15 09:01:25 +00:00
{ L " 99999999999999999999>&2 " , highlight_spec_error } ,
{ L " 2>& " , highlight_spec_redirection } ,
{ L " 99999999999999999999 " , highlight_spec_error } ,
2014-01-15 09:40:40 +00:00
2013-10-13 23:58:40 +00:00
/* Output redirection containing a command substitution */
2014-01-15 09:01:25 +00:00
{ L " 4> " , highlight_spec_redirection } ,
{ L " ( " , highlight_spec_operator } ,
{ L " echo " , highlight_spec_command } ,
{ L " /tmp/somewhere " , highlight_spec_param } ,
{ L " ) " , highlight_spec_operator } ,
2014-01-15 09:40:40 +00:00
2013-10-13 23:58:40 +00:00
/* Just another param */
2014-01-15 09:01:25 +00:00
{ L " param2 " , highlight_spec_param } ,
2013-10-13 23:58:40 +00:00
{ NULL , - 1 }
} ;
2014-01-15 09:40:40 +00:00
2013-11-25 08:48:01 +00:00
const highlight_component_t components9 [ ] =
{
2014-01-15 09:01:25 +00:00
{ L " end " , highlight_spec_error } ,
{ L " ; " , highlight_spec_statement_terminator } ,
{ L " if " , highlight_spec_command } ,
{ L " end " , highlight_spec_error } ,
2013-11-25 08:48:01 +00:00
{ NULL , - 1 }
} ;
2013-10-07 10:56:09 +00:00
2014-01-04 01:42:25 +00:00
const highlight_component_t components10 [ ] =
{
2014-01-15 09:01:25 +00:00
{ L " echo " , highlight_spec_command } ,
{ L " 'single_quote " , highlight_spec_error } ,
2014-01-04 01:42:25 +00:00
{ NULL , - 1 }
} ;
2014-02-03 22:13:42 +00:00
const highlight_component_t components11 [ ] =
{
{ L " echo " , highlight_spec_command } ,
{ L " $foo " , highlight_spec_operator } ,
{ L " \" " , highlight_spec_quote } ,
{ L " $bar " , highlight_spec_operator } ,
{ L " \" " , highlight_spec_quote } ,
{ L " $baz[ " , highlight_spec_operator } ,
{ L " 1 2..3 " , highlight_spec_param } ,
{ L " ] " , highlight_spec_operator } ,
{ NULL , - 1 }
} ;
2014-01-04 01:42:25 +00:00
2014-01-15 09:40:40 +00:00
2014-02-03 22:13:42 +00:00
const highlight_component_t * tests [ ] = { components1 , components2 , components3 , components4 , components5 , components6 , components7 , components8 , components9 , components10 , components11 } ;
2013-08-11 07:35:00 +00:00
for ( size_t which = 0 ; which < sizeof tests / sizeof * tests ; which + + )
{
const highlight_component_t * components = tests [ which ] ;
// Count how many we have
size_t component_count = 0 ;
while ( components [ component_count ] . txt ! = NULL )
{
component_count + + ;
}
2014-01-15 09:40:40 +00:00
2013-08-11 07:35:00 +00:00
// Generate the text
wcstring text ;
std : : vector < int > expected_colors ;
for ( size_t i = 0 ; i < component_count ; i + + )
{
if ( i > 0 )
{
text . push_back ( L ' ' ) ;
expected_colors . push_back ( 0 ) ;
}
text . append ( components [ i ] . txt ) ;
2013-10-13 23:58:40 +00:00
expected_colors . resize ( text . size ( ) , components [ i ] . color ) ;
2013-08-11 07:35:00 +00:00
}
2014-01-24 02:19:52 +00:00
do_test ( expected_colors . size ( ) = = text . size ( ) ) ;
2014-01-15 09:40:40 +00:00
2014-01-15 09:01:25 +00:00
std : : vector < highlight_spec_t > colors ( text . size ( ) ) ;
2013-08-11 07:35:00 +00:00
highlight_shell ( text , colors , 20 , NULL , env_vars_snapshot_t ( ) ) ;
2014-01-15 09:40:40 +00:00
2013-08-11 07:35:00 +00:00
if ( expected_colors . size ( ) ! = colors . size ( ) )
{
err ( L " Color vector has wrong size! Expected %lu, actual %lu " , expected_colors . size ( ) , colors . size ( ) ) ;
}
2014-01-24 02:19:52 +00:00
do_test ( expected_colors . size ( ) = = colors . size ( ) ) ;
2013-08-11 07:35:00 +00:00
for ( size_t i = 0 ; i < text . size ( ) ; i + + )
{
2013-10-13 23:58:40 +00:00
// Hackish space handling. We don't care about the colors in spaces.
if ( text . at ( i ) = = L ' ' )
continue ;
2014-01-15 09:40:40 +00:00
2013-08-11 07:35:00 +00:00
if ( expected_colors . at ( i ) ! = colors . at ( i ) )
{
const wcstring spaces ( i , L ' ' ) ;
2013-10-06 23:23:45 +00:00
err ( L " Wrong color at index %lu in text (expected %#x, actual %#x): \n %ls \n %ls^ " , i , expected_colors . at ( i ) , colors . at ( i ) , text . c_str ( ) , spaces . c_str ( ) ) ;
2013-08-11 07:35:00 +00:00
}
}
}
2014-01-15 09:40:40 +00:00
2013-08-11 07:35:00 +00:00
system ( " rm -Rf /tmp/fish_highlight_test " ) ;
}
2005-10-24 15:26:25 +00:00
/**
2012-11-18 10:23:22 +00:00
Main test
2005-10-24 15:26:25 +00:00
*/
2012-11-19 00:30:30 +00:00
int main ( int argc , char * * argv )
2005-09-20 13:26:39 +00:00
{
2012-11-19 00:30:30 +00:00
setlocale ( LC_ALL , " " ) ;
2013-08-08 22:06:46 +00:00
//srand(time(0));
2012-05-14 03:19:02 +00:00
configure_thread_assertions_for_testing ( ) ;
2013-05-05 09:33:17 +00:00
2012-11-19 00:30:30 +00:00
program_name = L " (ignore) " ;
2013-10-13 23:58:40 +00:00
s_arguments = argv + 1 ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
say ( L " Testing low-level functionality " ) ;
set_main_thread ( ) ;
2012-03-07 08:54:01 +00:00
setup_fork_guards ( ) ;
2014-01-02 20:37:50 +00:00
proc_init ( ) ;
2012-11-19 00:30:30 +00:00
event_init ( ) ;
function_init ( ) ;
builtin_init ( ) ;
reader_init ( ) ;
env_init ( ) ;
2014-01-15 09:40:40 +00:00
2014-01-02 20:37:50 +00:00
/* Set default signal handlers, so we can ctrl-C out of this */
signal_reset_handlers ( ) ;
2013-07-23 01:26:15 +00:00
2013-10-12 18:32:34 +00:00
if ( should_test_function ( " highlighting " ) ) test_highlighting ( ) ;
if ( should_test_function ( " new_parser_ll2 " ) ) test_new_parser_ll2 ( ) ;
2013-11-26 08:01:23 +00:00
if ( should_test_function ( " new_parser_fuzzing " ) ) test_new_parser_fuzzing ( ) ; //fuzzing is expensive
2013-10-12 18:32:34 +00:00
if ( should_test_function ( " new_parser_correctness " ) ) test_new_parser_correctness ( ) ;
2013-12-08 21:41:12 +00:00
if ( should_test_function ( " new_parser_ad_hoc " ) ) test_new_parser_ad_hoc ( ) ;
2013-12-09 05:54:06 +00:00
if ( should_test_function ( " new_parser_errors " ) ) test_new_parser_errors ( ) ;
2013-11-25 07:21:00 +00:00
if ( should_test_function ( " escape " ) ) test_unescape_sane ( ) ;
if ( should_test_function ( " escape " ) ) test_escape_crazy ( ) ;
2013-10-12 18:32:34 +00:00
if ( should_test_function ( " format " ) ) test_format ( ) ;
if ( should_test_function ( " convert " ) ) test_convert ( ) ;
if ( should_test_function ( " convert_nulls " ) ) test_convert_nulls ( ) ;
if ( should_test_function ( " tok " ) ) test_tok ( ) ;
2013-12-07 20:54:43 +00:00
if ( should_test_function ( " iothread " ) ) test_iothread ( ) ;
2013-10-12 18:32:34 +00:00
if ( should_test_function ( " parser " ) ) test_parser ( ) ;
2014-01-02 20:37:50 +00:00
if ( should_test_function ( " cancellation " ) ) test_cancellation ( ) ;
2013-12-08 21:41:12 +00:00
if ( should_test_function ( " indents " ) ) test_indents ( ) ;
2013-10-12 18:32:34 +00:00
if ( should_test_function ( " utils " ) ) test_utils ( ) ;
if ( should_test_function ( " escape_sequences " ) ) test_escape_sequences ( ) ;
if ( should_test_function ( " lru " ) ) test_lru ( ) ;
if ( should_test_function ( " expand " ) ) test_expand ( ) ;
if ( should_test_function ( " fuzzy_match " ) ) test_fuzzy_match ( ) ;
if ( should_test_function ( " abbreviations " ) ) test_abbreviations ( ) ;
if ( should_test_function ( " test " ) ) test_test ( ) ;
if ( should_test_function ( " path " ) ) test_path ( ) ;
2014-01-20 00:41:26 +00:00
if ( should_test_function ( " pager_navigation " ) ) test_pager_navigation ( ) ;
2013-10-12 18:32:34 +00:00
if ( should_test_function ( " word_motion " ) ) test_word_motion ( ) ;
if ( should_test_function ( " is_potential_path " ) ) test_is_potential_path ( ) ;
if ( should_test_function ( " colors " ) ) test_colors ( ) ;
if ( should_test_function ( " complete " ) ) test_complete ( ) ;
if ( should_test_function ( " completion_insertions " ) ) test_completion_insertions ( ) ;
if ( should_test_function ( " autosuggestion_combining " ) ) test_autosuggestion_combining ( ) ;
if ( should_test_function ( " autosuggest_suggest_special " ) ) test_autosuggest_suggest_special ( ) ;
if ( should_test_function ( " history " ) ) history_tests_t : : test_history ( ) ;
if ( should_test_function ( " history_merge " ) ) history_tests_t : : test_history_merge ( ) ;
if ( should_test_function ( " history_races " ) ) history_tests_t : : test_history_races ( ) ;
if ( should_test_function ( " history_formats " ) ) history_tests_t : : test_history_formats ( ) ;
2012-12-03 10:25:08 +00:00
//history_tests_t::test_history_speed();
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
say ( L " Encountered %d errors in low-level tests " , err_count ) ;
2013-12-08 21:41:12 +00:00
if ( s_test_run_count = = 0 )
say ( L " *** No Tests Were Actually Run! *** " ) ;
2012-11-18 10:23:22 +00:00
2012-11-19 00:30:30 +00:00
/*
Skip performance tests for now , since they seem to hang when running from inside make ( ? )
*/
2012-11-18 10:23:22 +00:00
// say( L"Testing performance" );
// perf_complete();
2012-11-19 00:30:30 +00:00
env_destroy ( ) ;
reader_destroy ( ) ;
builtin_destroy ( ) ;
wutil_destroy ( ) ;
event_destroy ( ) ;
proc_destroy ( ) ;
2012-11-18 10:23:22 +00:00
2014-01-13 14:35:38 +00:00
if ( err_count ! = 0 ) {
return ( 1 ) ;
}
2005-09-20 13:26:39 +00:00
}