Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/hydra
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0721f6623ffb
Choose a base ref
...
head repository: NixOS/hydra
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 215ca5da9ce9
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 31, 2018

  1. Copy the full SHA
    dd1e4a9 View commit details

Commits on Nov 1, 2018

  1. Add json output for the search API endpoint

    This commit also add a test of this feature.
    
    Note the search JSON output doesn't contain any jobs because they can
    not be exported to JSON yet.
    
    The JSON output on a search query matching a build looks like:
    
    ```
    {
      "builds": [
        {
          "buildoutputs": {
            "out": {
              "path": "/nix/store/wdag3pznrvqk01byk989irg7rq3q2a2c-job"
            }
          },
          "finished": 0,
          "releasename": null,
          "starttime": null,
          "project": "sample",
          "buildproducts": {},
          "timestamp": 1541007629,
          "buildstatus": null,
          "nixname": "job",
          "drvpath": "/nix/store/n9zqndn7j7nyr6gg3bmxvw26cfmdwv2n-job.drv",
          "job": "job",
          "id": 1,
          "stoptime": null,
          "priority": 100,
          "system": "x86_64-linux",
          "jobsetevals": [
            1
          ],
          "jobset": "default",
          "buildmetrics": {}
        }
      ],
      "projects": [],
      "jobsets": [],
      "buildsdrv": []
    }
    ```
    nlewo committed Nov 1, 2018
    Copy the full SHA
    0d2a2d8 View commit details

Commits on Mar 18, 2019

  1. Merge pull request #607 from nlewo/json-search

    Add JSON search API endpoint
    grahamc authored Mar 18, 2019
    Copy the full SHA
    215ca5d View commit details
Showing with 15 additions and 3 deletions.
  1. +5 −0 src/lib/Hydra/Controller/Root.pm
  2. +10 −3 tests/api-test.pl
5 changes: 5 additions & 0 deletions src/lib/Hydra/Controller/Root.pm
Original file line number Diff line number Diff line change
@@ -428,6 +428,11 @@ sub search :Local Args(0) {
$c->stash->{buildsdrv} = [ $c->model('DB::Builds')->search(
{ "drvpath" => trim($query) },
{ order_by => ["id desc"] } ) ];

$c->stash->{resource} = { projects => $c->stash->{projects},
jobsets => $c->stash->{jobsets},
builds => $c->stash->{builds},
buildsdrv => $c->stash->{buildsdrv} };
}

sub serveLogFile {
13 changes: 10 additions & 3 deletions tests/api-test.pl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use LWP::UserAgent;
use JSON;
use Test::Simple tests => 17;
use Test::Simple tests => 19;

my $ua = LWP::UserAgent->new;
$ua->cookie_jar({});
@@ -34,14 +34,14 @@ sub request_json {

ok(request_json({ uri => '/project/sample' })->code() == 404, "Non-existent projects don't exist");

$result = request_json({ uri => '/project/sample', method => 'PUT', data => { displayname => "Sample", enabled => "1", } });
$result = request_json({ uri => '/project/sample', method => 'PUT', data => { displayname => "Sample", enabled => "1", visible => "1", } });
ok($result->code() == 201, "PUTting a new project creates it");

my $project = decode_json(request_json({ uri => '/project/sample' })->content());

ok((not @{$project->{jobsets}}), "A new project has no jobsets");

$result = request_json({ uri => '/jobset/sample/default', method => 'PUT', data => { nixexprpath => "default.nix", nixexprinput => "my-src", inputs => { "my-src" => { type => "path", value => "/run/jobset" } }, enabled => "1", checkinterval => "3600"} });
$result = request_json({ uri => '/jobset/sample/default', method => 'PUT', data => { nixexprpath => "default.nix", nixexprinput => "my-src", inputs => { "my-src" => { type => "path", value => "/run/jobset" } }, enabled => "1", visible => "1", checkinterval => "3600"} });
ok($result->code() == 201, "PUTting a new jobset creates it");

my $jobset = decode_json(request_json({ uri => '/jobset/sample/default' })->content());
@@ -65,3 +65,10 @@ sub request_json {
ok($build->{job} eq "job", "The build's job name is job");
ok($build->{finished} == 0, "The build isn't finished yet");
ok($build->{buildoutputs}->{out}->{path} =~ /^\/nix\/store\/[a-zA-Z0-9]{32}-job$/, "The build's outpath is in the Nix store and named 'job'");


my $search_project = decode_json(request_json({ uri => "/search/?query=sample" })->content());
ok($search_project->{projects}[0]->{name} == "sample", "Search for project 'sample' works");

my $search_build = decode_json(request_json({ uri => "/search/?query=" . $build->{buildoutputs}->{out}->{path} })->content());
ok($search_build->{builds}[0]->{buildoutputs}->{out}->{path} == $build->{buildoutputs}->{out}->{path}, "Search for builds work");