commit
221988be68
34 changed files with 1146 additions and 0 deletions
@ -0,0 +1,5 @@
|
||||
[ |
||||
import_deps: [:ecto, :phoenix], |
||||
inputs: ["*.{ex,exs}", "priv/*/seeds.exs", "{config,lib,test}/**/*.{ex,exs}"], |
||||
subdirectories: ["priv/*/migrations"] |
||||
] |
@ -0,0 +1,34 @@
|
||||
# The directory Mix will write compiled artifacts to. |
||||
/_build/ |
||||
|
||||
# If you run "mix test --cover", coverage assets end up here. |
||||
/cover/ |
||||
|
||||
# The directory Mix downloads your dependencies sources to. |
||||
/deps/ |
||||
|
||||
# Where 3rd-party dependencies like ExDoc output generated docs. |
||||
/doc/ |
||||
|
||||
# Ignore .fetch files in case you like to edit your project deps locally. |
||||
/.fetch |
||||
|
||||
# If the VM crashes, it generates a dump, let's ignore it too. |
||||
erl_crash.dump |
||||
|
||||
# Also ignore archive artifacts (built via "mix archive.build"). |
||||
*.ez |
||||
|
||||
# Ignore package tarball (built via "mix hex.build"). |
||||
weather_tracker-*.tar |
||||
|
||||
# Ignore assets that are produced by build tools. |
||||
/priv/static/assets/ |
||||
|
||||
# Ignore digested assets cache. |
||||
/priv/static/cache_manifest.json |
||||
|
||||
# In case you use Node.js/npm, you want to ignore these. |
||||
npm-debug.log |
||||
/assets/node_modules/ |
||||
|
@ -0,0 +1,19 @@
|
||||
# WeatherTracker |
||||
|
||||
To start your Phoenix server: |
||||
|
||||
* Install dependencies with `mix deps.get` |
||||
* Create and migrate your database with `mix ecto.setup` |
||||
* Start Phoenix endpoint with `mix phx.server` or inside IEx with `iex -S mix phx.server` |
||||
|
||||
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser. |
||||
|
||||
Ready to run in production? Please [check our deployment guides](https://hexdocs.pm/phoenix/deployment.html). |
||||
|
||||
## Learn more |
||||
|
||||
* Official website: https://www.phoenixframework.org/ |
||||
* Guides: https://hexdocs.pm/phoenix/overview.html |
||||
* Docs: https://hexdocs.pm/phoenix |
||||
* Forum: https://elixirforum.com/c/phoenix-forum |
||||
* Source: https://github.com/phoenixframework/phoenix |
@ -0,0 +1,120 @@
|
||||
/* This file is for your main application CSS */ |
||||
@import "./phoenix.css"; |
||||
|
||||
/* Alerts and form errors used by phx.new */ |
||||
.alert { |
||||
padding: 15px; |
||||
margin-bottom: 20px; |
||||
border: 1px solid transparent; |
||||
border-radius: 4px; |
||||
} |
||||
.alert-info { |
||||
color: #31708f; |
||||
background-color: #d9edf7; |
||||
border-color: #bce8f1; |
||||
} |
||||
.alert-warning { |
||||
color: #8a6d3b; |
||||
background-color: #fcf8e3; |
||||
border-color: #faebcc; |
||||
} |
||||
.alert-danger { |
||||
color: #a94442; |
||||
background-color: #f2dede; |
||||
border-color: #ebccd1; |
||||
} |
||||
.alert p { |
||||
margin-bottom: 0; |
||||
} |
||||
.alert:empty { |
||||
display: none; |
||||
} |
||||
.invalid-feedback { |
||||
color: #a94442; |
||||
display: block; |
||||
margin: -1rem 0 2rem; |
||||
} |
||||
|
||||
/* LiveView specific classes for your customization */ |
||||
.phx-no-feedback.invalid-feedback, |
||||
.phx-no-feedback .invalid-feedback { |
||||
display: none; |
||||
} |
||||
|
||||
.phx-click-loading { |
||||
opacity: 0.5; |
||||
transition: opacity 1s ease-out; |
||||
} |
||||
|
||||
.phx-loading{ |
||||
cursor: wait; |
||||
} |
||||
|
||||
.phx-modal { |
||||
opacity: 1!important; |
||||
position: fixed; |
||||
z-index: 1; |
||||
left: 0; |
||||
top: 0; |
||||
width: 100%; |
||||
height: 100%; |
||||
overflow: auto; |
||||
background-color: rgba(0,0,0,0.4); |
||||
} |
||||
|
||||
.phx-modal-content { |
||||
background-color: #fefefe; |
||||
margin: 15vh auto; |
||||
padding: 20px; |
||||
border: 1px solid #888; |
||||
width: 80%; |
||||
} |
||||
|
||||
.phx-modal-close { |
||||
color: #aaa; |
||||
float: right; |
||||
font-size: 28px; |
||||
font-weight: bold; |
||||
} |
||||
|
||||
.phx-modal-close:hover, |
||||
.phx-modal-close:focus { |
||||
color: black; |
||||
text-decoration: none; |
||||
cursor: pointer; |
||||
} |
||||
|
||||
.fade-in-scale { |
||||
animation: 0.2s ease-in 0s normal forwards 1 fade-in-scale-keys; |
||||
} |
||||
|
||||
.fade-out-scale { |
||||
animation: 0.2s ease-out 0s normal forwards 1 fade-out-scale-keys; |
||||
} |
||||
|
||||
.fade-in { |
||||
animation: 0.2s ease-out 0s normal forwards 1 fade-in-keys; |
||||
} |
||||
.fade-out { |
||||
animation: 0.2s ease-out 0s normal forwards 1 fade-out-keys; |
||||
} |
||||
|
||||
@keyframes fade-in-scale-keys{ |
||||
0% { scale: 0.95; opacity: 0; } |
||||
100% { scale: 1.0; opacity: 1; } |
||||
} |
||||
|
||||
@keyframes fade-out-scale-keys{ |
||||
0% { scale: 1.0; opacity: 1; } |
||||
100% { scale: 0.95; opacity: 0; } |
||||
} |
||||
|
||||
@keyframes fade-in-keys{ |
||||
0% { opacity: 0; } |
||||
100% { opacity: 1; } |
||||
} |
||||
|
||||
@keyframes fade-out-keys{ |
||||
0% { opacity: 1; } |
||||
100% { opacity: 0; } |
||||
} |
File diff suppressed because one or more lines are too long
@ -0,0 +1,21 @@
|
||||
// We import the CSS which is extracted to its own file by esbuild.
|
||||
// Remove this line if you add a your own CSS build pipeline (e.g postcss).
|
||||
import "../css/app.css" |
||||
|
||||
// If you want to use Phoenix channels, run `mix help phx.gen.channel`
|
||||
// to get started and then uncomment the line below.
|
||||
// import "./user_socket.js"
|
||||
|
||||
// You can include dependencies in two ways.
|
||||
//
|
||||
// The simplest option is to put them in assets/vendor and
|
||||
// import them using relative paths:
|
||||
//
|
||||
// import "../vendor/some-package.js"
|
||||
//
|
||||
// Alternatively, you can `npm install some-package --prefix assets` and import
|
||||
// them using a path starting with the package name:
|
||||
//
|
||||
// import "some-package"
|
||||
//
|
||||
|
@ -0,0 +1,53 @@
|
||||
# This file is responsible for configuring your application |
||||
# and its dependencies with the aid of the Config module. |
||||
# |
||||
# This configuration file is loaded before any dependency and |
||||
# is restricted to this project. |
||||
|
||||
# General application configuration |
||||
import Config |
||||
|
||||
config :weather_tracker, |
||||
ecto_repos: [WeatherTracker.Repo], |
||||
generators: [binary_id: true] |
||||
|
||||
# Configures the endpoint |
||||
config :weather_tracker, WeatherTrackerWeb.Endpoint, |
||||
url: [host: "localhost"], |
||||
render_errors: [view: WeatherTrackerWeb.ErrorView, accepts: ~w(json), layout: false], |
||||
pubsub_server: WeatherTracker.PubSub, |
||||
live_view: [signing_salt: "Fsg8to5A"] |
||||
|
||||
# Configures the mailer |
||||
# |
||||
# By default it uses the "Local" adapter which stores the emails |
||||
# locally. You can see the emails in your browser, at "/dev/mailbox". |
||||
# |
||||
# For production it's recommended to configure a different adapter |
||||
# at the `config/runtime.exs`. |
||||
config :weather_tracker, WeatherTracker.Mailer, adapter: Swoosh.Adapters.Local |
||||
|
||||
# Swoosh API client is needed for adapters other than SMTP. |
||||
config :swoosh, :api_client, false |
||||
|
||||
# Configure esbuild (the version is required) |
||||
config :esbuild, |
||||
version: "0.14.0", |
||||
default: [ |
||||
args: |
||||
~w(js/app.js --bundle --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*), |
||||
cd: Path.expand("../assets", __DIR__), |
||||
env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)} |
||||
] |
||||
|
||||
# Configures Elixir's Logger |
||||
config :logger, :console, |
||||
format: "$time $metadata[$level] $message\n", |
||||
metadata: [:request_id] |
||||
|
||||
# Use Jason for JSON parsing in Phoenix |
||||
config :phoenix, :json_library, Jason |
||||
|
||||
# Import environment specific config. This must remain at the bottom |
||||
# of this file so it overrides the configuration defined above. |
||||
import_config "#{config_env()}.exs" |
@ -0,0 +1,63 @@
|
||||
import Config |
||||
|
||||
# Configure your database |
||||
config :weather_tracker, WeatherTracker.Repo, |
||||
username: "postgres", |
||||
password: "postgres", |
||||
hostname: "localhost", |
||||
database: "weather_tracker_dev", |
||||
show_sensitive_data_on_connection_error: true, |
||||
pool_size: 10 |
||||
|
||||
# For development, we disable any cache and enable |
||||
# debugging and code reloading. |
||||
# |
||||
# The watchers configuration can be used to run external |
||||
# watchers to your application. For example, we use it |
||||
# with esbuild to bundle .js and .css sources. |
||||
config :weather_tracker, WeatherTrackerWeb.Endpoint, |
||||
# Binding to loopback ipv4 address prevents access from other machines. |
||||
# Change to `ip: {0, 0, 0, 0}` to allow access from other machines. |
||||
http: [ip: {127, 0, 0, 1}, port: 4000], |
||||
check_origin: false, |
||||
code_reloader: true, |
||||
debug_errors: true, |
||||
secret_key_base: "B2lyyYo7TXCmYFhzSYG/oXfEnwIqUBu47pd53IT1HNSHzHqsdjQu5GXzFUPAjYgd", |
||||
watchers: [ |
||||
# Start the esbuild watcher by calling Esbuild.install_and_run(:default, args) |
||||
esbuild: {Esbuild, :install_and_run, [:default, ~w(--sourcemap=inline --watch)]} |
||||
] |
||||
|
||||
# ## SSL Support |
||||
# |
||||
# In order to use HTTPS in development, a self-signed |
||||
# certificate can be generated by running the following |
||||
# Mix task: |
||||
# |
||||
# mix phx.gen.cert |
||||
# |
||||
# Note that this task requires Erlang/OTP 20 or later. |
||||
# Run `mix help phx.gen.cert` for more information. |
||||
# |
||||
# The `http:` config above can be replaced with: |
||||
# |
||||
# https: [ |
||||
# port: 4001, |
||||
# cipher_suite: :strong, |
||||
# keyfile: "priv/cert/selfsigned_key.pem", |
||||
# certfile: "priv/cert/selfsigned.pem" |
||||
# ], |
||||
# |
||||
# If desired, both `http:` and `https:` keys can be |
||||
# configured to run both http and https servers on |
||||
# different ports. |
||||
|
||||
# Do not include metadata nor timestamps in development logs |
||||
config :logger, :console, format: "[$level] $message\n" |
||||
|
||||
# Set a higher stacktrace during development. Avoid configuring such |
||||
# in production as building large stacktraces may be expensive. |
||||
config :phoenix, :stacktrace_depth, 20 |
||||
|
||||
# Initialize plugs at runtime for faster development compilation |
||||
config :phoenix, :plug_init_mode, :runtime |
@ -0,0 +1,49 @@
|
||||
import Config |
||||
|
||||
# For production, don't forget to configure the url host |
||||
# to something meaningful, Phoenix uses this information |
||||
# when generating URLs. |
||||
# |
||||
# Note we also include the path to a cache manifest |
||||
# containing the digested version of static files. This |
||||
# manifest is generated by the `mix phx.digest` task, |
||||
# which you should run after static files are built and |
||||
# before starting your production server. |
||||
config :weather_tracker, WeatherTrackerWeb.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json" |
||||
|
||||
# Do not print debug messages in production |
||||
config :logger, level: :info |
||||
|
||||
# ## SSL Support |
||||
# |
||||
# To get SSL working, you will need to add the `https` key |
||||
# to the previous section and set your `:url` port to 443: |
||||
# |
||||
# config :weather_tracker, WeatherTrackerWeb.Endpoint, |
||||
# ..., |
||||
# url: [host: "example.com", port: 443], |
||||
# https: [ |
||||
# ..., |
||||
# port: 443, |
||||
# cipher_suite: :strong, |
||||
# keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"), |
||||
# certfile: System.get_env("SOME_APP_SSL_CERT_PATH") |
||||
# ] |
||||
# |
||||
# The `cipher_suite` is set to `:strong` to support only the |
||||
# latest and more secure SSL ciphers. This means old browsers |
||||
# and clients may not be supported. You can set it to |
||||
# `:compatible` for wider support. |
||||
# |
||||
# `:keyfile` and `:certfile` expect an absolute path to the key |
||||
# and cert in disk or a relative path inside priv, for example |
||||
# "priv/ssl/server.key". For all supported SSL configuration |
||||
# options, see https://hexdocs.pm/plug/Plug.SSL.html#configure/1 |
||||
# |
||||
# We also recommend setting `force_ssl` in your endpoint, ensuring |
||||
# no data is ever sent via http, always redirecting to https: |
||||
# |
||||
# config :weather_tracker, WeatherTrackerWeb.Endpoint, |
||||
# force_ssl: [hsts: true] |
||||
# |
||||
# Check `Plug.SSL` for all available options in `force_ssl`. |
@ -0,0 +1,85 @@
|
||||
import Config |
||||
|
||||
# config/runtime.exs is executed for all environments, including |
||||
# during releases. It is executed after compilation and before the |
||||
# system starts, so it is typically used to load production configuration |
||||
# and secrets from environment variables or elsewhere. Do not define |
||||
# any compile-time configuration in here, as it won't be applied. |
||||
# The block below contains prod specific runtime configuration. |
||||
|
||||
# Start the phoenix server if environment is set and running in a release |
||||
if System.get_env("PHX_SERVER") && System.get_env("RELEASE_NAME") do |
||||
config :weather_tracker, WeatherTrackerWeb.Endpoint, server: true |
||||
end |
||||
|
||||
if config_env() == :prod do |
||||
database_url = |
||||
System.get_env("DATABASE_URL") || |
||||
raise """ |
||||
environment variable DATABASE_URL is missing. |
||||
For example: ecto://USER:PASS@HOST/DATABASE |
||||
""" |
||||
|
||||
maybe_ipv6 = if System.get_env("ECTO_IPV6"), do: [:inet6], else: [] |
||||
|
||||
config :weather_tracker, WeatherTracker.Repo, |
||||
# ssl: true, |
||||
url: database_url, |
||||
pool_size: String.to_integer(System.get_env("POOL_SIZE") || "10"), |
||||
socket_options: maybe_ipv6 |
||||
|
||||
# The secret key base is used to sign/encrypt cookies and other secrets. |
||||
# A default value is used in config/dev.exs and config/test.exs but you |
||||
# want to use a different value for prod and you most likely don't want |
||||
# to check this value into version control, so we use an environment |
||||
# variable instead. |
||||
secret_key_base = |
||||
System.get_env("SECRET_KEY_BASE") || |
||||
raise """ |
||||
environment variable SECRET_KEY_BASE is missing. |
||||
You can generate one by calling: mix phx.gen.secret |
||||
""" |
||||
|
||||
host = System.get_env("PHX_HOST") || "example.com" |
||||
port = String.to_integer(System.get_env("PORT") || "4000") |
||||
|
||||
config :weather_tracker, WeatherTrackerWeb.Endpoint, |
||||
url: [host: host, port: 443], |
||||
http: [ |
||||
# Enable IPv6 and bind on all interfaces. |
||||
# Set it to {0, 0, 0, 0, 0, 0, 0, 1} for local network only access. |
||||
# See the documentation on https://hexdocs.pm/plug_cowboy/Plug.Cowboy.html |
||||
# for details about using IPv6 vs IPv4 and loopback vs public addresses. |
||||
ip: {0, 0, 0, 0, 0, 0, 0, 0}, |
||||
port: port |
||||
], |
||||
secret_key_base: secret_key_base |
||||
|
||||
# ## Using releases |
||||
# |
||||
# If you are doing OTP releases, you need to instruct Phoenix |
||||
# to start each relevant endpoint: |
||||
# |
||||
# config :weather_tracker, WeatherTrackerWeb.Endpoint, server: true |
||||
# |
||||
# Then you can assemble a release by calling `mix release`. |
||||
# See `mix help release` for more information. |
||||
|
||||
# ## Configuring the mailer |
||||
# |
||||
# In production you need to configure the mailer to use a different adapter. |
||||
# Also, you may need to configure the Swoosh API client of your choice if you |
||||
# are not using SMTP. Here is an example of the configuration: |
||||
# |
||||
# config :weather_tracker, WeatherTracker.Mailer, |
||||
# adapter: Swoosh.Adapters.Mailgun, |
||||
# api_key: System.get_env("MAILGUN_API_KEY"), |
||||
# domain: System.get_env("MAILGUN_DOMAIN") |
||||
# |
||||
# For this example you need include a HTTP client required by Swoosh API client. |
||||
# Swoosh supports Hackney and Finch out of the box: |
||||
# |
||||
# config :swoosh, :api_client, Swoosh.ApiClient.Hackney |
||||
# |
||||
# See https://hexdocs.pm/swoosh/Swoosh.html#module-installation for details. |
||||
end |
@ -0,0 +1,30 @@
|
||||
import Config |
||||
|
||||
# Configure your database |
||||
# |
||||
# The MIX_TEST_PARTITION environment variable can be used |
||||
# to provide built-in test partitioning in CI environment. |
||||
# Run `mix help test` for more information. |
||||
config :weather_tracker, WeatherTracker.Repo, |
||||
username: "postgres", |
||||
password: "postgres", |
||||
hostname: "localhost", |
||||
database: "weather_tracker_test#{System.get_env("MIX_TEST_PARTITION")}", |
||||
pool: Ecto.Adapters.SQL.Sandbox, |
||||
pool_size: 10 |
||||
|
||||
# We don't run a server during test. If one is required, |
||||
# you can enable the server option below. |
||||
config :weather_tracker, WeatherTrackerWeb.Endpoint, |
||||
http: [ip: {127, 0, 0, 1}, port: 4002], |
||||
secret_key_base: "1thkMXxhmkxWN41EeB1W1dVXFba3CuE+LOtMQgQ9JF4ZrhhwGufsCrG1dcmu+ajn", |
||||
server: false |
||||
|
||||
# In test we don't send emails. |
||||
config :weather_tracker, WeatherTracker.Mailer, adapter: Swoosh.Adapters.Test |
||||
|
||||
# Print only warnings and errors during test |
||||
config :logger, level: :warn |
||||
|
||||
# Initialize plugs at runtime for faster test compilation |
||||
config :phoenix, :plug_init_mode, :runtime |
@ -0,0 +1,14 @@
|
||||
version: '3.8' |
||||
|
||||
services: |
||||
postgres: |
||||
image: timescale/timescaledb:2.6.0-pg14 |
||||
ports: |
||||
- '5432:5432' |
||||
volumes: |
||||
- postgres-data:/var/lib/postgresql/data |
||||
environment: |
||||
POSTGRES_PASSWORD: postgres |
||||
POSTGRES_USER: postgres |
||||
volumes: |
||||
postgres-data: {} |
@ -0,0 +1,9 @@
|
||||
defmodule WeatherTracker do |
||||
@moduledoc """ |
||||
WeatherTracker keeps the contexts that define your domain |
||||
and business logic. |
||||
|
||||
Contexts are also responsible for managing your data, regardless |
||||
if it comes from the database, an external API or others. |
||||
""" |
||||
end |
@ -0,0 +1,36 @@
|
||||
defmodule WeatherTracker.Application do |
||||
# See https://hexdocs.pm/elixir/Application.html |
||||
# for more information on OTP Applications |
||||
@moduledoc false |
||||
|
||||
use Application |
||||
|
||||
@impl true |
||||
def start(_type, _args) do |
||||
children = [ |
||||
# Start the Ecto repository |
||||
WeatherTracker.Repo, |
||||
# Start the Telemetry supervisor |
||||
WeatherTrackerWeb.Telemetry, |
||||
# Start the PubSub system |
||||
{Phoenix.PubSub, name: WeatherTracker.PubSub}, |
||||
# Start the Endpoint (http/https) |
||||
WeatherTrackerWeb.Endpoint |
||||
# Start a worker by calling: WeatherTracker.Worker.start_link(arg) |
||||
# {WeatherTracker.Worker, arg} |
||||
] |
||||
|
||||
# See https://hexdocs.pm/elixir/Supervisor.html |
||||
# for other strategies and supported options |
||||
opts = [strategy: :one_for_one, name: WeatherTracker.Supervisor] |
||||
Supervisor.start_link(children, opts) |
||||
end |
||||
|
||||
# Tell Phoenix to update the endpoint configuration |
||||
# whenever the application is updated. |
||||
@impl true |
||||
def config_change(changed, _new, removed) do |
||||
WeatherTrackerWeb.Endpoint.config_change(changed, removed) |
||||
:ok |
||||
end |
||||
end |
@ -0,0 +1,3 @@
|
||||
defmodule WeatherTracker.Mailer do |
||||
use Swoosh.Mailer, otp_app: :weather_tracker |
||||
end |
@ -0,0 +1,5 @@
|
||||
defmodule WeatherTracker.Repo do |
||||
use Ecto.Repo, |
||||
otp_app: :weather_tracker, |
||||
adapter: Ecto.Adapters.Postgres |
||||
end |
@ -0,0 +1,75 @@
|
||||
defmodule WeatherTrackerWeb do |
||||
@moduledoc """ |
||||
The entrypoint for defining your web interface, such |
||||
as controllers, views, channels and so on. |
||||
|
||||
This can be used in your application as: |
||||
|
||||
use WeatherTrackerWeb, :controller |
||||
use WeatherTrackerWeb, :view |
||||
|
||||
The definitions below will be executed for every view, |
||||
controller, etc, so keep them short and clean, focused |
||||
on imports, uses and aliases. |
||||
|
||||
Do NOT define functions inside the quoted expressions |
||||
below. Instead, define any helper function in modules |
||||
and import those modules here. |
||||
""" |
||||
|
||||
def controller do |
||||
quote do |
||||
use Phoenix.Controller, namespace: WeatherTrackerWeb |
||||
|
||||
import Plug.Conn |
||||
alias WeatherTrackerWeb.Router.Helpers, as: Routes |
||||
end |
||||
end |
||||
|
||||
def view do |
||||
quote do |
||||
use Phoenix.View, |
||||
root: "lib/weather_tracker_web/templates", |
||||
namespace: WeatherTrackerWeb |
||||
|
||||
# Import convenience functions from controllers |
||||
import Phoenix.Controller, |
||||
only: [get_flash: 1, get_flash: 2, view_module: 1, view_template: 1] |
||||
|
||||
# Include shared imports and aliases for views |
||||
unquote(view_helpers()) |
||||
end |
||||
end |
||||
|
||||
def router do |
||||
quote do |
||||
use Phoenix.Router |
||||
|
||||
import Plug.Conn |
||||
import Phoenix.Controller |
||||
end |
||||
end |
||||
|
||||
def channel do |
||||
quote do |
||||
use Phoenix.Channel |
||||
end |
||||
end |
||||
|
||||
defp view_helpers do |
||||
quote do |
||||
# Import basic rendering functionality (render, render_layout, etc) |
||||
import Phoenix.View |
||||
|
||||
import WeatherTrackerWeb.ErrorHelpers |
||||
alias WeatherTrackerWeb.Router.Helpers, as: Routes |
||||
end |
||||
end |
||||
|
||||
@doc """ |
||||
When used, dispatch to the appropriate controller/view/etc. |
||||
""" |
||||
defmacro __using__(which) when is_atom(which) do |
||||
apply(__MODULE__, which, []) |
||||
end |
||||
end |
@ -0,0 +1,44 @@
|
||||
defmodule WeatherTrackerWeb.Endpoint do |
||||
use Phoenix.Endpoint, otp_app: :weather_tracker |
||||
|
||||
# The session will be stored in the cookie and signed, |
||||
# this means its contents can be read but not tampered with. |
||||
# Set :encryption_salt if you would also like to encrypt it. |
||||
@session_options [ |
||||
store: :cookie, |
||||
key: "_weather_tracker_key", |
||||
signing_salt: "1SZAiotT" |
||||
] |
||||
|
||||
# socket "/live", Phoenix.LiveView.Socket, websocket: [connect_info: [session: @session_options]] |
||||
|
||||
# Serve at "/" the static files from "priv/static" directory. |
||||
# |
||||
# You should set gzip to true if you are running phx.digest |
||||
# when deploying your static files in production. |
||||
plug Plug.Static, |
||||
at: "/", |
||||
from: :weather_tracker, |
||||
gzip: false, |
||||
only: ~w(assets fonts images favicon.ico robots.txt) |
||||
|
||||
# Code reloading can be explicitly enabled under the |
||||
# :code_reloader configuration of your endpoint. |
||||
if code_reloading? do |
||||
plug Phoenix.CodeReloader |
||||
plug Phoenix.Ecto.CheckRepoStatus, otp_app: :weather_tracker |
||||
end |
||||
|
||||
plug Plug.RequestId |
||||
plug Plug.Telemetry, event_prefix: [:phoenix, :endpoint] |
||||
|
||||
plug Plug.Parsers, |
||||
parsers: [:urlencoded, :multipart, :json], |
||||
pass: ["*/*"], |
||||
json_decoder: Phoenix.json_library() |
||||
|
||||
plug Plug.MethodOverride |
||||
plug Plug.Head |
||||
plug Plug.Session, @session_options |
||||
plug WeatherTrackerWeb.Router |
||||
end |
@ -0,0 +1,23 @@
|
||||
defmodule WeatherTrackerWeb.Router do |
||||
use WeatherTrackerWeb, :router |
||||
|
||||
pipeline :api do |
||||
plug :accepts, ["json"] |
||||
end |
||||
|
||||
scope "/api", WeatherTrackerWeb do |
||||
pipe_through :api |
||||
end |
||||
|
||||
# Enables the Swoosh mailbox preview in development. |
||||
# |
||||
# Note that preview only shows emails that were sent by the same |
||||
# node running the Phoenix server. |
||||
if Mix.env() == :dev do |
||||
scope "/dev" do |
||||
pipe_through [:fetch_session, :protect_from_forgery] |
||||
|
||||
forward "/mailbox", Plug.Swoosh.MailboxPreview |
||||
end |
||||
end |
||||
end |
@ -0,0 +1,71 @@
|
||||
defmodule WeatherTrackerWeb.Telemetry do |
||||
use Supervisor |
||||
import Telemetry.Metrics |
||||
|
||||
def start_link(arg) do |
||||
Supervisor.start_link(__MODULE__, arg, name: __MODULE__) |
||||
end |
||||
|
||||
@impl true |
||||
def init(_arg) do |
||||
children = [ |
||||
# Telemetry poller will execute the given period measurements |
||||
# every 10_000ms. Learn more here: https://hexdocs.pm/telemetry_metrics |
||||
{:telemetry_poller, measurements: periodic_measurements(), period: 10_000} |
||||
# Add reporters as children of your supervision tree. |
||||
# {Telemetry.Metrics.ConsoleReporter, metrics: metrics()} |
||||
] |
||||
|
||||
Supervisor.init(children, strategy: :one_for_one) |
||||
end |
||||
|
||||
def metrics do |
||||
[ |
||||
# Phoenix Metrics |
||||
summary("phoenix.endpoint.stop.duration", |
||||
unit: {:native, :millisecond} |
||||
), |
||||
summary("phoenix.router_dispatch.stop.duration", |
||||
tags: [:route], |
||||
unit: {:native, :millisecond} |
||||
), |
||||
|
||||
# Database Metrics |
||||
summary("weather_tracker.repo.query.total_time", |
||||
unit: {:native, :millisecond}, |
||||
description: "The sum of the other measurements" |
||||
), |
||||
summary("weather_tracker.repo.query.decode_time", |
||||
unit: {:native, :millisecond}, |
||||
description: "The time spent decoding the data received from the database" |
||||
), |
||||
summary("weather_tracker.repo.query.query_time", |
||||
unit: {:native, :millisecond}, |
||||
description: "The time spent executing the query" |
||||
), |
||||
summary("weather_tracker.repo.query.queue_time", |
||||
unit: {:native, :millisecond}, |
||||
description: "The time spent waiting for a database connection" |
||||
), |
||||
summary("weather_tracker.repo.query.idle_time", |
||||
unit: {:native, :millisecond}, |
||||
description: |
||||
"The time the connection spent waiting before being checked out for the query" |
||||
), |
||||
|
||||
# VM Metrics |
||||
summary("vm.memory.total", unit: {:byte, :kilobyte}), |
||||
summary("vm.total_run_queue_lengths.total"), |
||||
summary("vm.total_run_queue_lengths.cpu"), |
||||
summary("vm.total_run_queue_lengths.io") |
||||
] |
||||
end |
||||
|
||||
defp periodic_measurements do |
||||
[ |
||||
# A module, function and arguments to be invoked periodically. |
||||
# This function must call :telemetry.execute/3 and a metric must be added above. |
||||
# {WeatherTrackerWeb, :count_users, []} |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,16 @@
|
||||
defmodule WeatherTrackerWeb.ErrorHelpers do |
||||
@moduledoc """ |
||||
Conveniences for translating and building error messages. |
||||
""" |
||||
|
||||
@doc """ |
||||
Translates an error message. |
||||
""" |
||||
def translate_error({msg, opts}) do |
||||
# Because the error messages we show in our forms and APIs |
||||
# are defined inside Ecto, we need to translate them dynamically. |
||||
Enum.reduce(opts, msg, fn {key, value}, acc -> |
||||
String.replace(acc, "%{#{key}}", fn _ -> to_string(value) end) |
||||
end) |
||||
end |
||||
end |
@ -0,0 +1,16 @@
|
||||
defmodule WeatherTrackerWeb.ErrorView do |
||||
use WeatherTrackerWeb, :view |
||||
|
||||
# If you want to customize a particular status code |
||||
# for a certain format, you may uncomment below. |
||||
# def render("500.json", _assigns) do |
||||
# %{errors: %{detail: "Internal Server Error"}} |
||||
# end |
||||
|
||||
# By default, Phoenix returns the status message from |
||||
# the template name. For example, "404.json" becomes |
||||
# "Not Found". |
||||
def template_not_found(template, _assigns) do |
||||
%{errors: %{detail: Phoenix.Controller.status_message_from_template(template)}} |
||||
end |
||||
end |
@ -0,0 +1,64 @@
|
||||
defmodule WeatherTracker.MixProject do |
||||
use Mix.Project |
||||
|
||||
def project do |
||||
[ |
||||
app: :weather_tracker, |
||||
version: "0.1.0", |
||||
elixir: "~> 1.12", |
||||
elixirc_paths: elixirc_paths(Mix.env()), |
||||
compilers: Mix.compilers(), |
||||
start_permanent: Mix.env() == :prod, |
||||
aliases: aliases(), |
||||
deps: deps() |
||||
] |
||||
end |
||||
|
||||
# Configuration for the OTP application. |
||||
# |
||||
# Type `mix help compile.app` for more information. |
||||
def application do |
||||
[ |
||||
mod: {WeatherTracker.Application, []}, |
||||
extra_applications: [:logger, :runtime_tools] |
||||
] |
||||
end |
||||
|
||||
# Specifies which paths to compile per environment. |
||||
defp elixirc_paths(:test), do: ["lib", "test/support"] |
||||
defp elixirc_paths(_), do: ["lib"] |
||||
|
||||
# Specifies your project dependencies. |
||||
# |
||||
# Type `mix help deps` for examples and options. |
||||
defp deps do |
||||
[ |
||||
{:phoenix, "~> 1.6.6"}, |
||||
{:phoenix_ecto, "~> 4.4"}, |
||||
{:ecto_sql, "~> 3.6"}, |
||||
{:postgrex, ">= 0.0.0"}, |
||||
{:esbuild, "~> 0.3", runtime: Mix.env() == :dev}, |
||||
{:swoosh, "~> 1.3"}, |
||||
{:telemetry_metrics, "~> 0.6"}, |
||||
{:telemetry_poller, "~> 1.0"}, |
||||
{:jason, "~> 1.2"}, |
||||
{:plug_cowboy, "~> 2.5"} |
||||
] |
||||
end |
||||
|
||||
# Aliases are shortcuts or tasks specific to the current project. |
||||
# For example, to install project dependencies and perform other setup tasks, run: |
||||
# |
||||
# $ mix setup |
||||
# |
||||
# See the documentation for `Mix` for more info on aliases. |
||||
defp aliases do |
||||
[ |
||||
setup: ["deps.get", "ecto.setup"], |
||||
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"], |
||||
"ecto.reset": ["ecto.drop", "ecto.setup"], |
||||
test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"], |
||||
"assets.deploy": ["esbuild default --minify", "phx.digest"] |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,27 @@
|
||||
%{ |
||||
"castore": {:hex, :castore, "0.1.16", "2675f717adc700475345c5512c381ef9273eb5df26bdd3f8c13e2636cf4cc175", [:mix], [], "hexpm", "28ed2c43d83b5c25d35c51bc0abf229ac51359c170cba76171a462ced2e4b651"}, |
||||
"connection": {:hex, :connection, "1.1.0", "ff2a49c4b75b6fb3e674bfc5536451607270aac754ffd1bdfe175abe4a6d7a68", [:mix], [], "hexpm", "722c1eb0a418fbe91ba7bd59a47e28008a189d47e37e0e7bb85585a016b2869c"}, |
||||
"cowboy": {:hex, :cowboy, "2.9.0", "865dd8b6607e14cf03282e10e934023a1bd8be6f6bacf921a7e2a96d800cd452", [:make, :rebar3], [{:cowlib, "2.11.0", [hex: :cowlib, repo: "hexpm", optional: false]}, {:ranch, "1.8.0", [hex: :ranch, repo: "hexpm", optional: false]}], "hexpm", "2c729f934b4e1aa149aff882f57c6372c15399a20d54f65c8d67bef583021bde"}, |
||||
"cowboy_telemetry": {:hex, :cowboy_telemetry, "0.4.0", "f239f68b588efa7707abce16a84d0d2acf3a0f50571f8bb7f56a15865aae820c", [:rebar3], [{:cowboy, "~> 2.7", [hex: :cowboy, repo: "hexpm", optional: false]}, {:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "7d98bac1ee4565d31b62d59f8823dfd8356a169e7fcbb83831b8a5397404c9de"}, |
||||
"cowlib": {:hex, :cowlib, "2.11.0", "0b9ff9c346629256c42ebe1eeb769a83c6cb771a6ee5960bd110ab0b9b872063", [:make, :rebar3], [], "hexpm", "2b3e9da0b21c4565751a6d4901c20d1b4cc25cbb7fd50d91d2ab6dd287bc86a9"}, |
||||
"db_connection": {:hex, :db_connection, "2.4.2", "f92e79aff2375299a16bcb069a14ee8615c3414863a6fef93156aee8e86c2ff3", [:mix], [{:connection, "~> 1.0", [hex: :connection, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "4fe53ca91b99f55ea249693a0229356a08f4d1a7931d8ffa79289b145fe83668"}, |
||||
"decimal": {:hex, :decimal, "2.0.0", "a78296e617b0f5dd4c6caf57c714431347912ffb1d0842e998e9792b5642d697", [:mix], [], "hexpm", "34666e9c55dea81013e77d9d87370fe6cb6291d1ef32f46a1600230b1d44f577"}, |
||||
"ecto": {:hex, :ecto, "3.7.2", "44c034f88e1980754983cc4400585970b4206841f6f3780967a65a9150ef09a8", [:mix], [{:decimal, "~> 1.6 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "a600da5772d1c31abbf06f3e4a1ffb150e74ed3e2aa92ff3cee95901657a874e"}, |
||||
"ecto_sql": {:hex, :ecto_sql, "3.7.2", "55c60aa3a06168912abf145c6df38b0295c34118c3624cf7a6977cd6ce043081", [:mix], [{:db_connection, "~> 2.2", [hex: :db_connection, repo: "hexpm", optional: false]}, {:ecto, "~> 3.7.0", [hex: :ecto, repo: "hexpm", optional: false]}, {:myxql, "~> 0.4.0 or ~> 0.5.0 or ~> 0.6.0", [hex: :myxql, repo: "hexpm", optional: true]}, {:postgrex, "~> 0.15.0 or ~> 0.16.0 or ~> 1.0", [hex: :postgrex, repo: "hexpm", optional: true]}, {:tds, "~> 2.1.1 or ~> 2.2", [hex: :tds, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4.0 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "3c218ea62f305dcaef0b915fb56583195e7b91c91dcfb006ba1f669bfacbff2a"}, |
||||
"esbuild": {:hex, :esbuild, "0.4.0", "9f17db148aead4cf1e6e6a584214357287a93407b5fb51a031f122b61385d4c2", [:mix], [{:castore, ">= 0.0.0", [hex: :castore, repo: "hexpm", optional: false]}], "hexpm", "b61e4e6b92ffe45e4ee4755a22de6211a67c67987dc02afb35a425a0add1d447"}, |
||||
"jason": {:hex, :jason, "1.3.0", "fa6b82a934feb176263ad2df0dbd91bf633d4a46ebfdffea0c8ae82953714946", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "53fc1f51255390e0ec7e50f9cb41e751c260d065dcba2bf0d08dc51a4002c2ac"}, |
||||
"mime": {:hex, :mime, "2.0.2", "0b9e1a4c840eafb68d820b0e2158ef5c49385d17fb36855ac6e7e087d4b1dcc5", [:mix], [], "hexpm", "e6a3f76b4c277739e36c2e21a2c640778ba4c3846189d5ab19f97f126df5f9b7"}, |
||||
"phoenix": {:hex, :phoenix, "1.6.6", "281c8ce8dccc9f60607346b72cdfc597c3dde134dd9df28dff08282f0b751754", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:phoenix_pubsub, "~> 2.0", [hex: :phoenix_pubsub, repo: "hexpm", optional: false]}, {:phoenix_view, "~> 1.0", [hex: :phoenix_view, repo: "hexpm", optional: false]}, {:plug, "~> 1.10", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 2.2", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:plug_crypto, "~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "807bd646e64cd9dc83db016199715faba72758e6db1de0707eef0a2da4924364"}, |
||||
"phoenix_ecto": {:hex, :phoenix_ecto, "4.4.0", "0672ed4e4808b3fbed494dded89958e22fb882de47a97634c0b13e7b0b5f7720", [:mix], [{:ecto, "~> 3.3", [hex: :ecto, repo: "hexpm", optional: false]}, {:phoenix_html, "~> 2.14.2 or ~> 3.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}, {:plug, "~> 1.9", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "09864e558ed31ee00bd48fcc1d4fc58ae9678c9e81649075431e69dbabb43cc1"}, |
||||
"phoenix_pubsub": {:hex, :phoenix_pubsub, "2.0.0", "a1ae76717bb168cdeb10ec9d92d1480fec99e3080f011402c0a2d68d47395ffb", [:mix], [], "hexpm", "c52d948c4f261577b9c6fa804be91884b381a7f8f18450c5045975435350f771"}, |
||||
"phoenix_view": {:hex, :phoenix_view, "1.1.2", "1b82764a065fb41051637872c7bd07ed2fdb6f5c3bd89684d4dca6e10115c95a", [:mix], [{:phoenix_html, "~> 2.14.2 or ~> 3.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}], "hexpm", "7ae90ad27b09091266f6adbb61e1d2516a7c3d7062c6789d46a7554ec40f3a56"}, |
||||
"plug": {:hex, :plug, "1.13.4", "addb6e125347226e3b11489e23d22a60f7ab74786befb86c14f94fb5f23ca9a4", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "06114c1f2a334212fe3ae567dbb3b1d29fd492c1a09783d52f3d489c1a6f4cf2"}, |
||||
"plug_cowboy": {:hex, :plug_cowboy, "2.5.2", "62894ccd601cf9597e2c23911ff12798a8a18d237e9739f58a6b04e4988899fe", [:mix], [{:cowboy, "~> 2.7", [hex: :cowboy, repo: "hexpm", optional: false]}, {:cowboy_telemetry, "~> 0.3", [hex: :cowboy_telemetry, repo: "hexpm", optional: false]}, {:plug, "~> 1.7", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "ea6e87f774c8608d60c8d34022a7d073bd7680a0a013f049fc62bf35efea1044"}, |
||||
"plug_crypto": {:hex, :plug_crypto, "1.2.2", "05654514ac717ff3a1843204b424477d9e60c143406aa94daf2274fdd280794d", [:mix], [], "hexpm", "87631c7ad914a5a445f0a3809f99b079113ae4ed4b867348dd9eec288cecb6db"}, |
||||
"postgrex": {:hex, :postgrex, "0.16.2", "0f83198d0e73a36e8d716b90f45f3bde75b5eebf4ade4f43fa1f88c90a812f74", [:mix], [{:connection, "~> 1.1", [hex: :connection, repo: "hexpm", optional: false]}, {:db_connection, "~> 2.1", [hex: :db_connection, repo: "hexpm", optional: false]}, {:decimal, "~> 1.5 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}], "hexpm", "a9ea589754d9d4d076121090662b7afe155b374897a6550eb288f11d755acfa0"}, |
||||
"ranch": {:hex, :ranch, "1.8.0", "8c7a100a139fd57f17327b6413e4167ac559fbc04ca7448e9be9057311597a1d", [:make, :rebar3], [], "hexpm", "49fbcfd3682fab1f5d109351b61257676da1a2fdbe295904176d5e521a2ddfe5"}, |
||||
"swoosh": {:hex, :swoosh, "1.6.3", "598d3f07641004bedb3eede40057760ae18be1073cff72f079ca1e1fc9cd97b9", [:mix], [{:cowboy, "~> 1.1 or ~> 2.4", [hex: :cowboy, repo: "hexpm", optional: true]}, {:finch, "~> 0.6", [hex: :finch, repo: "hexpm", optional: true]}, {:gen_smtp, "~> 0.13 or ~> 1.0", [hex: :gen_smtp, repo: "hexpm", optional: true]}, {:hackney, "~> 1.9", [hex: :hackney, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}, {:mail, "~> 0.2", [hex: :mail, repo: "hexpm", optional: true]}, {:mime, "~> 1.1 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_cowboy, ">= 1.0.0", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4.2 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "81ff9d7c7c4005a57465a7eb712edd71db51829aef94c8a34c30c5b9e9964adf"}, |
||||
"telemetry": {:hex, :telemetry, "1.0.0", "0f453a102cdf13d506b7c0ab158324c337c41f1cc7548f0bc0e130bbf0ae9452", [:rebar3], [], "hexpm", "73bc09fa59b4a0284efb4624335583c528e07ec9ae76aca96ea0673850aec57a"}, |
||||
"telemetry_metrics": {:hex, :telemetry_metrics, "0.6.1", "315d9163a1d4660aedc3fee73f33f1d355dcc76c5c3ab3d59e76e3edf80eef1f", [:mix], [{:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "7be9e0871c41732c233be71e4be11b96e56177bf15dde64a8ac9ce72ac9834c6"}, |
||||
"telemetry_poller": {:hex, :telemetry_poller, "1.0.0", "db91bb424e07f2bb6e73926fcafbfcbcb295f0193e0a00e825e589a0a47e8453", [:rebar3], [{:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "b3a24eafd66c3f42da30fc3ca7dda1e9d546c12250a2d60d7b81d264fbec4f6e"}, |
||||
} |
@ -0,0 +1,4 @@
|
||||
[ |
||||
import_deps: [:ecto_sql], |
||||
inputs: ["*.exs"] |
||||
] |
@ -0,0 +1,11 @@
|
||||
# Script for populating the database. You can run it as: |
||||
# |
||||
# mix run priv/repo/seeds.exs |
||||
# |
||||
# Inside the script, you can read and write to any of your |
||||
# repositories directly: |
||||
# |
||||
# WeatherTracker.Repo.insert!(%WeatherTracker.SomeSchema{}) |
||||
# |
||||
# We recommend using the bang functions (`insert!`, `update!` |
||||
# and so on) as they will fail if something goes wrong. |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 14 KiB |
@ -0,0 +1,5 @@
|
||||
# See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file |
||||
# |
||||
# To ban all spiders from the entire site uncomment the next two lines: |
||||
# User-agent: * |
||||
# Disallow: / |
@ -0,0 +1,36 @@
|
||||
defmodule WeatherTrackerWeb.ChannelCase do |
||||
@moduledoc """ |
||||
This module defines the test case to be used by |
||||
channel tests. |
||||
|
||||
Such tests rely on `Phoenix.ChannelTest` and also |
||||
import other functionality to make it easier |
||||
to build common data structures and query the data layer. |
||||
|
||||
Finally, if the test case interacts with the database, |
||||
we enable the SQL sandbox, so changes done to the database |
||||
are reverted at the end of every test. If you are using |
||||
PostgreSQL, you can even run database tests asynchronously |
||||
by setting `use WeatherTrackerWeb.ChannelCase, async: true`, although |
||||
this option is not recommended for other databases. |
||||
""" |
||||
|
||||
use ExUnit.CaseTemplate |
||||
|
||||
using do |
||||
quote do |
||||
# Import conveniences for testing with channels |
||||
import Phoenix.ChannelTest |
||||
import WeatherTrackerWeb.ChannelCase |
||||
|
||||
# The default endpoint for testing |
||||
@endpoint WeatherTrackerWeb.Endpoint |
||||
end |
||||
end |
||||
|
||||
setup tags do |
||||
pid = Ecto.Adapters.SQL.Sandbox.start_owner!(WeatherTracker.Repo, shared: not tags[:async]) |
||||
on_exit(fn -> Ecto.Adapters.SQL.Sandbox.stop_owner(pid) end) |
||||
:ok |
||||
end |
||||
end |
@ -0,0 +1,39 @@
|
||||
defmodule WeatherTrackerWeb.ConnCase do |
||||
@moduledoc """ |
||||
This module defines the test case to be used by |
||||
tests that require setting up a connection. |
||||
|
||||
Such tests rely on `Phoenix.ConnTest` and also |
||||
import other functionality to make it easier |
||||
to build common data structures and query the data layer. |
||||
|
||||
Finally, if the test case interacts with the database, |
||||
we enable the SQL sandbox, so changes done to the database |
||||
are reverted at the end of every test. If you are using |
||||
PostgreSQL, you can even run database tests asynchronously |
||||
by setting `use WeatherTrackerWeb.ConnCase, async: true`, although |
||||
this option is not recommended for other databases. |
||||
""" |
||||
|
||||
use ExUnit.CaseTemplate |
||||
|
||||
using do |
||||
quote do |
||||
# Import conveniences for testing with connections |
||||
import Plug.Conn |
||||
import Phoenix.ConnTest |
||||
import WeatherTrackerWeb.ConnCase |
||||
|
||||
alias WeatherTrackerWeb.Router.Helpers, as: Routes |
||||
|
||||
# The default endpoint for testing |
||||
@endpoint WeatherTrackerWeb.Endpoint |
||||
end |
||||
end |
||||
|
||||
setup tags do |
||||
pid = Ecto.Adapters.SQL.Sandbox.start_owner!(WeatherTracker.Repo, shared: not tags[:async]) |
||||
on_exit(fn -> Ecto.Adapters.SQL.Sandbox.stop_owner(pid) end) |
||||
{:ok, conn: Phoenix.ConnTest.build_conn()} |
||||
end |
||||
end |
@ -0,0 +1,51 @@
|
||||
defmodule WeatherTracker.DataCase do |
||||
@moduledoc """ |
||||
This module defines the setup for tests requiring |
||||
access to the application's data layer. |
||||
|
||||
You may define functions here to be used as helpers in |
||||
your tests. |
||||
|
||||
Finally, if the test case interacts with the database, |
||||
we enable the SQL sandbox, so changes done to the database |
||||
are reverted at the end of every test. If you are using |
||||
PostgreSQL, you can even run database tests asynchronously |
||||
by setting `use WeatherTracker.DataCase, async: true`, although |
||||
this option is not recommended for other databases. |
||||
""" |
||||
|
||||
use ExUnit.CaseTemplate |
||||
|
||||
using do |
||||
quote do |
||||
alias WeatherTracker.Repo |
||||
|
||||
import Ecto |
||||
import Ecto.Changeset |
||||
import Ecto.Query |
||||
import WeatherTracker.DataCase |
||||
end |
||||
end |
||||
|
||||
setup tags do |
||||
pid = Ecto.Adapters.SQL.Sandbox.start_owner!(WeatherTracker.Repo, shared: not tags[:async]) |
||||
on_exit(fn -> Ecto.Adapters.SQL.Sandbox.stop_owner(pid) end) |
||||
:ok |
||||
end |
||||
|
||||
@doc """ |
||||
A helper that transforms changeset errors into a map of messages. |
||||
|
||||
assert {:error, changeset} = Accounts.create_user(%{password: "short"}) |
||||
assert "password is too short" in errors_on(changeset).password |
||||
assert %{password: ["password is too short"]} = errors_on(changeset) |
||||
|
||||
""" |
||||
def errors_on(changeset) do |
||||
Ecto.Changeset.traverse_errors(changeset, fn {message, opts} -> |
||||
Regex.replace(~r"%{(\w+)}", message, fn _, key -> |
||||
opts |> Keyword.get(String.to_existing_atom(key), key) |> to_string() |
||||
end) |
||||
end) |
||||
end |
||||
end |
@ -0,0 +1,2 @@
|
||||
ExUnit.start() |
||||
Ecto.Adapters.SQL.Sandbox.mode(WeatherTracker.Repo, :manual) |
@ -0,0 +1,15 @@
|
||||
defmodule WeatherTrackerWeb.ErrorViewTest do |
||||
use WeatherTrackerWeb.ConnCase, async: true |
||||
|
||||
# Bring render/3 and render_to_string/3 for testing custom views |
||||
import Phoenix.View |
||||
|
||||
test "renders 404.json" do |
||||
assert render(WeatherTrackerWeb.ErrorView, "404.json", []) == %{errors: %{detail: "Not Found"}} |
||||
end |
||||
|
||||
test "renders 500.json" do |
||||
assert render(WeatherTrackerWeb.ErrorView, "500.json", []) == |
||||
%{errors: %{detail: "Internal Server Error"}} |
||||
end |
||||
end |
Loading…
Reference in new issue