-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from dwyl/insert
Insert
- Loading branch information
Showing
24 changed files
with
647 additions
and
675 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,52 @@ | ||
defmodule Alog.Connection do | ||
alias Ecto.Adapters.Postgres.Connection, as: EAPC | ||
|
||
@behaviour Ecto.Adapters.SQL.Connection | ||
@default_port 5432 | ||
|
||
@impl true | ||
def child_spec(opts) do | ||
opts | ||
|> Keyword.put_new(:port, @default_port) | ||
|> Postgrex.child_spec() | ||
end | ||
|
||
@impl true | ||
defdelegate prepare_execute(conn, name, statement, params, opts), to: EAPC | ||
|
||
@impl true | ||
defdelegate execute(conn, query, params, opts), to: EAPC | ||
|
||
@impl true | ||
defdelegate query(conn, statement, params, opts), to: EAPC | ||
|
||
@impl true | ||
defdelegate stream(conn, statement, params, opts), to: EAPC | ||
|
||
@impl true | ||
defdelegate to_constraints(error_struct), to: EAPC | ||
|
||
@impl true | ||
defdelegate all(query), to: EAPC | ||
|
||
@impl true | ||
defdelegate update_all(query, prefix \\ nil), to: EAPC | ||
|
||
@impl true | ||
defdelegate delete_all(query), to: EAPC | ||
|
||
@impl true | ||
defdelegate insert(prefix, table, header, rows, on_conflict, returning), to: EAPC | ||
|
||
@impl true | ||
defdelegate ddl_logs(result), to: Ecto.Adapter.Postgres | ||
defdelegate update(prefix, table, fields, filters, returning), to: EAPC | ||
|
||
@impl true | ||
defdelegate prepare_execute(connection, name, statement, params, options), | ||
to: Ecto.Adapter.Postgres | ||
defdelegate delete(prefix, table, filters, returning), to: EAPC | ||
|
||
@impl true | ||
defdelegate query(connection, statement, params, options), to: Ecto.Adapter.Postgres | ||
defdelegate execute_ddl(arg), to: EAPC | ||
|
||
@impl true | ||
defdelegate stream(connection, statement, params, options), to: Ecto.Adapter.Postgres | ||
defdelegate ddl_logs(result), to: EAPC | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
%{ | ||
"b58": {:hex, :b58, "0.1.1", "950563b90ad95be214143aa807d16c98d2ac7bab915097cb1461c936128c6b90", [:mix], [], "hexpm"}, | ||
"connection": {:hex, :connection, "1.0.4", "a1cae72211f0eef17705aaededacac3eb30e6625b04a6117c1b2db6ace7d5976", [:mix], [], "hexpm"}, | ||
"db_connection": {:hex, :db_connection, "2.0.5", "ddb2ba6761a08b2bb9ca0e7d260e8f4dd39067426d835c24491a321b7f92a4da", [:mix], [{:connection, "~> 1.0.2", [hex: :connection, repo: "hexpm", optional: false]}], "hexpm"}, | ||
"decimal": {:hex, :decimal, "1.6.0", "bfd84d90ff966e1f5d4370bdd3943432d8f65f07d3bab48001aebd7030590dcc", [:mix], [], "hexpm"}, | ||
"ecto": {:hex, :ecto, "3.0.7", "44dda84ac6b17bbbdeb8ac5dfef08b7da253b37a453c34ab1a98de7f7e5fec7f", [:mix], [{:decimal, "~> 1.6", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:poison, "~> 2.2 or ~> 3.0", [hex: :poison, repo: "hexpm", optional: true]}], "hexpm"}, | ||
"ecto_sql": {:hex, :ecto_sql, "3.0.5", "7e44172b4f7aca4469f38d7f6a3da394dbf43a1bcf0ca975e958cb957becd74e", [:mix], [{:db_connection, "~> 2.0", [hex: :db_connection, repo: "hexpm", optional: false]}, {:ecto, "~> 3.0.6", [hex: :ecto, repo: "hexpm", optional: false]}, {:mariaex, "~> 0.9.1", [hex: :mariaex, repo: "hexpm", optional: true]}, {:postgrex, "~> 0.14.0", [hex: :postgrex, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.3.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm"}, | ||
"ex_multihash": {:hex, :ex_multihash, "2.0.0", "7fb36f842a2ec1c6bbba550f28fcd16d3c62981781b9466c9c1975c43d7db43c", [:mix], [], "hexpm"}, | ||
"excid": {:hex, :excid, "0.1.0", "85fd8ac6466660bc8c4c0b52275e7a255389c683a18f70aaed8cd2ac7735cfab", [:mix], [{:b58, "~> 0.1.1", [hex: :b58, repo: "hexpm", optional: false]}, {:ex_multihash, "~> 2.0", [hex: :ex_multihash, repo: "hexpm", optional: false]}, {:jason, "~> 1.1", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm"}, | ||
"jason": {:hex, :jason, "1.1.2", "b03dedea67a99223a2eaf9f1264ce37154564de899fd3d8b9a21b1a6fd64afe7", [:mix], [{:decimal, "~> 1.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm"}, | ||
"postgrex": {:hex, :postgrex, "0.14.1", "63247d4a5ad6b9de57a0bac5d807e1c32d41e39c04b8a4156a26c63bcd8a2e49", [:mix], [{:connection, "~> 1.0", [hex: :connection, repo: "hexpm", optional: false]}, {:db_connection, "~> 2.0", [hex: :db_connection, repo: "hexpm", optional: false]}, {:decimal, "~> 1.5", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm"}, | ||
"telemetry": {:hex, :telemetry, "0.3.0", "099a7f3ce31e4780f971b4630a3c22ec66d22208bc090fe33a2a3a6a67754a73", [:rebar3], [], "hexpm"}, | ||
} |
15 changes: 0 additions & 15 deletions
15
priv/repo/test_app/migrations/20181015145631_create_users.exs
This file was deleted.
Oops, something went wrong.
28 changes: 0 additions & 28 deletions
28
priv/repo/test_app/migrations/20181026080544_create_items.exs
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
priv/repo/test_app/migrations/20181211161000_unique_index.exs
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
priv/repo/test_app/migrations/20190301105228_create_comments.exs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
defmodule Alog.Repo.Migrations.CreateComments do | ||
use Ecto.Migration | ||
|
||
def change do | ||
create table(:comments, primary_key: false) do | ||
add(:cid, :string, primary_key: true) | ||
add(:entry_id, :string) | ||
add(:deleted, :boolean, default: false) | ||
add(:comment, :string) | ||
|
||
timestamps() | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
defmodule AlogTest.AllTest do | ||
use Alog.TestApp.DataCase | ||
|
||
alias Alog.TestApp.{User, Helpers} | ||
|
||
describe "all/0:" do | ||
test "succeeds" do | ||
{:ok, _} = %User{} |> User.changeset(Helpers.user_1_params()) |> User.insert() | ||
{:ok, _} = %User{} |> User.changeset(Helpers.user_2_params()) |> User.insert() | ||
|
||
assert length(User.all()) == 2 | ||
end | ||
|
||
test "does not include old items" do | ||
{:ok, user} = %User{} |> User.changeset(Helpers.user_1_params()) |> User.insert() | ||
{:ok, _} = %User{} |> User.changeset(Helpers.user_2_params()) |> User.insert() | ||
{:ok, _} = user |> User.changeset(%{postcode: "W2 3EC"}) |> User.update() | ||
|
||
assert length(User.all()) == 2 | ||
end | ||
|
||
test "all return inserted_at original value" do | ||
{:ok, user} = %User{} |> User.changeset(Helpers.user_3_params()) |> User.insert() | ||
{:ok, user_updated} = user |> User.changeset(%{postcode: "W2 3EC"}) |> User.update() | ||
|
||
[user_all] = User.all() | ||
assert user_all.inserted_at == user.inserted_at | ||
assert user_all.postcode == user_updated.postcode | ||
end | ||
end | ||
# alias Alog.TestApp.{User, Helpers} | ||
# | ||
# describe "all/0:" do | ||
# test "succeeds" do | ||
# {:ok, _} = %User{} |> User.changeset(Helpers.user_1_params()) |> User.insert() | ||
# {:ok, _} = %User{} |> User.changeset(Helpers.user_2_params()) |> User.insert() | ||
# | ||
# assert length(User.all()) == 2 | ||
# end | ||
# | ||
# test "does not include old items" do | ||
# {:ok, user} = %User{} |> User.changeset(Helpers.user_1_params()) |> User.insert() | ||
# {:ok, _} = %User{} |> User.changeset(Helpers.user_2_params()) |> User.insert() | ||
# {:ok, _} = user |> User.changeset(%{postcode: "W2 3EC"}) |> User.update() | ||
# | ||
# assert length(User.all()) == 2 | ||
# end | ||
# | ||
# test "all return inserted_at original value" do | ||
# {:ok, user} = %User{} |> User.changeset(Helpers.user_3_params()) |> User.insert() | ||
# {:ok, user_updated} = user |> User.changeset(%{postcode: "W2 3EC"}) |> User.update() | ||
# | ||
# [user_all] = User.all() | ||
# assert user_all.inserted_at == user.inserted_at | ||
# assert user_all.postcode == user_updated.postcode | ||
# end | ||
# end | ||
end |
Oops, something went wrong.