Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Limit jobs and add pagination #54

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion lib/elixir_bench/benchmarks/benchmarks.ex
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ defmodule ElixirBench.Benchmarks do
alias ElixirBench.Github
alias ElixirBench.Benchmarks.{Benchmark, Measurement, Job, Runner, Config}

@jobs_default_limit 10
@jobs_max_limit 50

def data() do
Dataloader.Ecto.new(Repo, query: &query/2)
end
Expand Down Expand Up @@ -69,8 +72,26 @@ defmodule ElixirBench.Benchmarks do
Repo.all(from(j in Job, where: j.repo_id in ^repo_ids))
end

def paginate(query, page, size) do
from(
query,
limit: ^size,
offset: ^((page - 1) * size)
)
end

def list_jobs() do
Repo.all(Job)
Job
|> paginate(1, @jobs_default_limit)
|> Repo.all()
end

def list_jobs(page, size) do
size = if size < @jobs_max_limit, do: size, else: @jobs_max_limit

Job
|> paginate(page, size)
|> Repo.all()
end

def get_or_create_job(repo, %{commit_sha: commit_sha} = attrs) do
Expand Down
7 changes: 5 additions & 2 deletions lib/elixir_bench_web/schema.ex
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,11 @@ defmodule ElixirBenchWeb.Schema do
end

field :jobs, list_of(:job) do
resolve(fn _, _ ->
{:ok, Benchmarks.list_jobs()}
arg(:page, :integer, default_value: 1)
arg(:size, :integer, default_value: 10)

resolve(fn %{page: page_num, size: page_size}, _ ->
{:ok, Benchmarks.list_jobs(page_num, page_size)}
end)
end

Expand Down
31 changes: 31 additions & 0 deletions test/elixir_bench/jobs/jobs_test.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
defmodule ElixirBench.JobsTest do
use ElixirBench.DataCase
import ElixirBench.Factory
alias ElixirBench.Benchmarks

setup do
Enum.each(0..4, fn _ -> insert(:job) end)
end

describe "list_jobs/2" do
test "returns 2 jobs for page 1" do
jobs = Benchmarks.list_jobs(1, 2)
assert length(jobs) == 2
end

test "returns 2 jobs for page 2" do
jobs = Benchmarks.list_jobs(2, 2)
assert length(jobs) == 2
end

test "returns 1 job for page 3" do
jobs = Benchmarks.list_jobs(3, 2)
assert length(jobs) == 1
end

test "without page returns all 5 jobs" do
jobs = Benchmarks.list_jobs()
assert length(jobs) == 5
end
end
end