Skip to content

Commit dea7037

Browse files
committed
Create wallaby screenshot test
1 parent c26ae65 commit dea7037

38 files changed

+54
-14
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,15 @@ Ready to run in production? Please [check our deployment guides](https://hexdocs
1717
* Docs: https://hexdocs.pm/phoenix
1818
* Forum: https://elixirforum.com/c/phoenix-forum
1919
* Source: https://github.com/phoenixframework/phoenix
20+
21+
## Wallaby
22+
23+
We use [Wallaby](https://github.com/elixir-wallaby/wallaby) for end-to-end testing. If you want to run Wallaby you'll have to follow their instructions and install the ChromeDriver.
24+
25+
To execute wallaby tests run:
26+
27+
```elixir
28+
mix test --only wallaby
29+
```
30+
31+
For example, we have a `/screenshots` folder with screenshots of every page at different screen sizes in order to ensure consistent responsive styles across devices.

config/test.exs

+2
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,5 @@ config :phoenix, :plug_init_mode, :runtime
3636
config :wallaby, driver: Wallaby.Chrome
3737
# config :wallaby, driver: Wallaby.Selenium
3838
config :wallaby, otp_app: :elixir_newbie
39+
40+
config :elixir_newbie, ElixirNewbieWeb.Endpoint, server: true
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Hello World
1+
<h1 class="text-white">Hello World</h1>

lib/elixir_newbie_web/live/home_live.ex

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ defmodule ElixirNewbieWeb.HomeLive do
1212

1313
def render(assigns) do
1414
~H"""
15+
Some Text
1516
<section class="bg-[url('/images/background-smoke-transparent.webp')] min-h-screen bg-black bg-no-repeat bg-cover">
1617
<.navigation/>
1718
<section class="flex h-fit w-full flex-col gap-12 4k:gap-36 lg:flex-row xl:gap-24 mx-auto sm:w-full md:w-3/4 lg:w-full xl:w-3/4">
@@ -60,7 +61,7 @@ defmodule ElixirNewbieWeb.HomeLive do
6061
>
6162
<div class="transition duration-300 ease-in-out group-hover:scale-110">
6263
<div class="animate-spin-slow absolute h-full w-full rounded-full border-l-2 border-black"/>
63-
<img alt="DockYard Academy Icon Button" class="rounded-full border-2" src="images/dockyard_academy_icon_reduced.webp"/>
64+
<img id="dockyard-academy-icon" alt="DockYard Academy Icon Button" class="rounded-full border-2" src="images/dockyard_academy_icon_reduced.webp"/>
6465
</div>
6566
<p class="absolute -bottom-12 w-full text-center text-sm text-white">DockYard Academy</p>
6667
</.link>

lib/elixir_newbie_web/router.ex

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ defmodule ElixirNewbieWeb.Router do
1717
scope "/", ElixirNewbieWeb do
1818
pipe_through :browser
1919

20-
get "/", PageController, :home
21-
# live "/", HomeLive, :home
20+
# get "/", PageController, :home
21+
live "/", HomeLive, :home
2222
live "/blog", BlogLive, :blog
2323
live "/podcast", PodcastLive, :podcast
2424
live "/resources", ResourcesLive, :resources

screenshots/blog/2xl.png

16.1 KB
Loading

screenshots/blog/4k.png

34 KB
Loading

screenshots/blog/lg.png

12.2 KB
Loading

screenshots/blog/md.png

10.1 KB
Loading

screenshots/blog/sm.png

9.11 KB
Loading

screenshots/blog/xl.png

14.2 KB
Loading

screenshots/community/2xl.png

17.5 KB
Loading

screenshots/community/4k.png

35.3 KB
Loading

screenshots/community/lg.png

13.6 KB
Loading

screenshots/community/md.png

11.4 KB
Loading

screenshots/community/sm.png

10.5 KB
Loading

screenshots/community/xl.png

15.6 KB
Loading

screenshots/home/2xl.png

2.03 MB
Loading

screenshots/home/4k.png

6.22 MB
Loading

screenshots/home/lg.png

1.38 MB
Loading

screenshots/home/md.png

1.29 MB
Loading

screenshots/home/sm.png

1.26 MB
Loading

screenshots/home/xl.png

1.55 MB
Loading

screenshots/podcast/2xl.png

2.22 MB
Loading

screenshots/podcast/4k.png

4.93 MB
Loading

screenshots/podcast/lg.png

1.59 MB
Loading

screenshots/podcast/md.png

1.08 MB
Loading

screenshots/podcast/sm.png

912 KB
Loading

screenshots/podcast/xl.png

1.9 MB
Loading

screenshots/resources/2xl.png

1.63 MB
Loading

screenshots/resources/4k.png

1.76 MB
Loading

screenshots/resources/lg.png

1.08 MB
Loading

screenshots/resources/md.png

777 KB
Loading

screenshots/resources/sm.png

643 KB
Loading

screenshots/resources/xl.png

1.35 MB
Loading

test/elixir_newbie_web/wallaby/responsive_snapshots_test.exs

-10
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
defmodule ElixirNewbieWeb.Wallaby.SnapshotTests do
2+
use ExUnit.Case, async: true
3+
use Wallaby.Feature
4+
5+
@sizes [
6+
{"sm", 640},
7+
{"md", 768},
8+
{"lg", 1024},
9+
{"xl", 1280},
10+
{"2xl", 1536},
11+
{"4k", 3840}
12+
]
13+
@urls [
14+
"",
15+
"blog",
16+
"resources",
17+
"podcast",
18+
"community"
19+
]
20+
21+
@tag :wallaby
22+
feature "take snapshots", %{session: session} do
23+
Enum.each(@urls, fn url ->
24+
page = visit(session, url)
25+
26+
Enum.each(@sizes, fn {size, width} ->
27+
screen = resize_window(page, width, 2000)
28+
29+
Process.sleep(500)
30+
take_screenshot(screen, name: "#{(url == "" && "home") || url}/#{size}")
31+
end)
32+
end)
33+
end
34+
end

test/test_helper.exs

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
ExUnit.start()
2+
ExUnit.configure(exclude: :wallaby)
23
Ecto.Adapters.SQL.Sandbox.mode(ElixirNewbie.Repo, :manual)
34
{:ok, _} = Application.ensure_all_started(:wallaby)
45
Application.put_env(:wallaby, :base_url, ElixirNewbieWeb.Endpoint.url())

0 commit comments

Comments
 (0)