forked from lix-project/hydra
Project: add test for declarative->normal project transition
Also split into subtests.
This commit is contained in:
parent
6107040bf5
commit
588a3a774f
|
@ -1,7 +1,7 @@
|
||||||
use feature 'unicode_strings';
|
use feature 'unicode_strings';
|
||||||
use strict;
|
use strict;
|
||||||
use Setup;
|
use Setup;
|
||||||
use JSON qw(decode_json);
|
use JSON qw(decode_json encode_json);
|
||||||
|
|
||||||
my %ctx = test_init();
|
my %ctx = test_init();
|
||||||
|
|
||||||
|
@ -17,16 +17,33 @@ Catalyst::Test->import('Hydra');
|
||||||
my $db = Hydra::Model::DB->new;
|
my $db = Hydra::Model::DB->new;
|
||||||
hydra_setup($db);
|
hydra_setup($db);
|
||||||
|
|
||||||
my $project = $db->resultset('Projects')->create({name => "tests", displayname => "", owner => "root"});
|
# Create a user to log in to
|
||||||
|
my $user = $db->resultset('Users')->create({ username => 'alice', emailaddress => 'root@invalid.org', password => '!' });
|
||||||
|
$user->setPassword('foobar');
|
||||||
|
$user->userroles->update_or_create({ role => 'admin' });
|
||||||
|
|
||||||
my $projectinfo = request(GET '/project/tests',
|
my $project = $db->resultset('Projects')->create({name => "tests", displayname => "Tests", owner => "root"});
|
||||||
Accept => 'application/json',
|
|
||||||
|
# Login and save cookie for future requests
|
||||||
|
my $req = request(POST '/login',
|
||||||
|
Referer => 'http://localhost/',
|
||||||
|
Content => {
|
||||||
|
username => 'alice',
|
||||||
|
password => 'foobar'
|
||||||
|
}
|
||||||
);
|
);
|
||||||
|
is($req->code, 302);
|
||||||
|
my $cookie = $req->header("set-cookie");
|
||||||
|
|
||||||
ok($projectinfo->is_success);
|
subtest "Read project 'tests'" => sub {
|
||||||
is(decode_json($projectinfo->content), {
|
my $projectinfo = request(GET '/project/tests',
|
||||||
|
Accept => 'application/json',
|
||||||
|
);
|
||||||
|
|
||||||
|
ok($projectinfo->is_success);
|
||||||
|
is(decode_json($projectinfo->content), {
|
||||||
description => "",
|
description => "",
|
||||||
displayname => "",
|
displayname => "Tests",
|
||||||
enabled => JSON::true,
|
enabled => JSON::true,
|
||||||
hidden => JSON::false,
|
hidden => JSON::false,
|
||||||
homepage => "",
|
homepage => "",
|
||||||
|
@ -38,6 +55,95 @@ is(decode_json($projectinfo->content), {
|
||||||
type => "",
|
type => "",
|
||||||
value => ""
|
value => ""
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
subtest "Transitioning from declarative project to normal" => sub {
|
||||||
|
subtest "Make project declarative" => sub {
|
||||||
|
my $projectupdate = request(PUT '/project/tests',
|
||||||
|
Accept => 'application/json',
|
||||||
|
Content_Type => 'application/json',
|
||||||
|
Cookie => $cookie,
|
||||||
|
Content => encode_json({
|
||||||
|
enabled => JSON::true,
|
||||||
|
visible => JSON::true,
|
||||||
|
name => "tests",
|
||||||
|
displayname => "Tests",
|
||||||
|
declarative => {
|
||||||
|
file => "bogus",
|
||||||
|
type => "boolean",
|
||||||
|
value => "false"
|
||||||
|
}
|
||||||
|
})
|
||||||
|
);
|
||||||
|
ok($projectupdate->is_success);
|
||||||
|
};
|
||||||
|
|
||||||
|
subtest "Project has '.jobsets' jobset" => sub {
|
||||||
|
my $projectinfo = request(GET '/project/tests',
|
||||||
|
Accept => 'application/json',
|
||||||
|
);
|
||||||
|
|
||||||
|
ok($projectinfo->is_success);
|
||||||
|
is(decode_json($projectinfo->content), {
|
||||||
|
description => "",
|
||||||
|
displayname => "Tests",
|
||||||
|
enabled => JSON::true,
|
||||||
|
hidden => JSON::false,
|
||||||
|
homepage => "",
|
||||||
|
jobsets => [".jobsets"],
|
||||||
|
name => "tests",
|
||||||
|
owner => "root",
|
||||||
|
declarative => {
|
||||||
|
file => "bogus",
|
||||||
|
type => "boolean",
|
||||||
|
value => "false"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
subtest "Make project normal" => sub {
|
||||||
|
my $projectupdate = request(PUT '/project/tests',
|
||||||
|
Accept => 'application/json',
|
||||||
|
Content_Type => 'application/json',
|
||||||
|
Cookie => $cookie,
|
||||||
|
Content => encode_json({
|
||||||
|
enabled => JSON::true,
|
||||||
|
visible => JSON::true,
|
||||||
|
name => "tests",
|
||||||
|
displayname => "Tests",
|
||||||
|
declarative => {
|
||||||
|
file => "",
|
||||||
|
type => "boolean",
|
||||||
|
value => "false"
|
||||||
|
}
|
||||||
|
})
|
||||||
|
);
|
||||||
|
ok($projectupdate->is_success);
|
||||||
|
};
|
||||||
|
|
||||||
|
subtest "Project doesn't have '.jobsets' jobset" => sub {
|
||||||
|
my $projectinfo = request(GET '/project/tests',
|
||||||
|
Accept => 'application/json',
|
||||||
|
);
|
||||||
|
|
||||||
|
ok($projectinfo->is_success);
|
||||||
|
is(decode_json($projectinfo->content), {
|
||||||
|
description => "",
|
||||||
|
displayname => "Tests",
|
||||||
|
enabled => JSON::true,
|
||||||
|
hidden => JSON::false,
|
||||||
|
homepage => "",
|
||||||
|
jobsets => [],
|
||||||
|
name => "tests",
|
||||||
|
owner => "root",
|
||||||
|
declarative => {
|
||||||
|
file => "",
|
||||||
|
type => "",
|
||||||
|
value => ""
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
done_testing;
|
done_testing;
|
||||||
|
|
Loading…
Reference in a new issue