forked from lix-project/hydra
t: Test Projects JSON serialization and deserialization
This commit is contained in:
parent
f2b9649bf2
commit
f0ede5f8b8
38
t/Controller/projects.t
Normal file
38
t/Controller/projects.t
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
use strict;
|
||||||
|
use Setup;
|
||||||
|
use JSON qw(decode_json);
|
||||||
|
|
||||||
|
my %ctx = test_init();
|
||||||
|
|
||||||
|
require Hydra::Schema;
|
||||||
|
require Hydra::Model::DB;
|
||||||
|
require Hydra::Helper::Nix;
|
||||||
|
use HTTP::Request::Common;
|
||||||
|
|
||||||
|
use Test2::V0;
|
||||||
|
require Catalyst::Test;
|
||||||
|
Catalyst::Test->import('Hydra');
|
||||||
|
|
||||||
|
my $db = Hydra::Model::DB->new;
|
||||||
|
hydra_setup($db);
|
||||||
|
|
||||||
|
my $project = $db->resultset('Projects')->create({name => "tests", displayname => "", owner => "root"});
|
||||||
|
|
||||||
|
my $projectinfo = request(GET '/project/tests',
|
||||||
|
Accept => 'application/json',
|
||||||
|
);
|
||||||
|
|
||||||
|
ok($projectinfo->is_success);
|
||||||
|
is(decode_json($projectinfo->content), {
|
||||||
|
description => undef,
|
||||||
|
displayname => "",
|
||||||
|
enabled => JSON::true,
|
||||||
|
hidden => JSON::false,
|
||||||
|
homepage => undef,
|
||||||
|
jobsets => [],
|
||||||
|
name => "tests",
|
||||||
|
owner => "root"
|
||||||
|
});
|
||||||
|
|
||||||
|
done_testing;
|
Loading…
Reference in a new issue