You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.5 KiB
56 lines
1.5 KiB
# Verify that an unmodified configuration is rejected
|
|
|
|
use Data::Dumper;
|
|
use Test::More;
|
|
use strict;
|
|
use JSON;
|
|
require 't/test-lib.pm';
|
|
|
|
my @struct =
|
|
qw[t/jsonfiles/01-base-tree.json t/jsonfiles/02-base-tree-all-nodes-opened.json];
|
|
my @desc = ( 'Unopened conf', 'Unchanged conf with all nodes opened' );
|
|
my $confFiles = [ 't/conf/lmConf-1.json', 't/conf/lmConf-2.json' ];
|
|
|
|
sub body {
|
|
return 0 unless (@struct);
|
|
my $t = shift @struct;
|
|
return IO::File->new( $t, 'r' );
|
|
}
|
|
|
|
# Delete lmConf-2.json if exists
|
|
eval { unlink $confFiles->[1]; };
|
|
mkdir 't/sessions';
|
|
|
|
# Try to save an unmodified conf
|
|
while ( my $body = &body() ) {
|
|
my $desc = shift @desc;
|
|
my ( $res, $resBody );
|
|
ok(
|
|
$res =
|
|
&client->_post( '/confs/', 'cfgNum=1', $body, 'application/json' ),
|
|
"$desc: positive result"
|
|
);
|
|
ok( $res->[0] == 200, "$desc: result code is 200" )
|
|
or print STDERR Dumper($res);
|
|
ok(
|
|
$resBody = from_json( $res->[2]->[0] ),
|
|
"$desc: result body contains JSON text"
|
|
);
|
|
|
|
#print STDERR Dumper($resBody);
|
|
ok( $resBody->{result} == 0, "$desc: JSON response contains \"result:0\"" );
|
|
ok( $resBody->{message} eq '__confNotChanged__',
|
|
"$desc: conf was not changed" )
|
|
or print STDERR Dumper($resBody);
|
|
ok( !-e $confFiles->[1], "$desc: file isn't created" );
|
|
|
|
#print STDERR Dumper($resBody);
|
|
count(6);
|
|
}
|
|
eval { unlink $confFiles->[1]; rmdir 't/sessions'; };
|
|
|
|
done_testing( count() );
|
|
|
|
# Remove sessions directory
|
|
`rm -rf t/sessions`;
|
|
|
|
|