Skip to content

Commit 6cc43ab

Browse files
committed
docs: rewrite tests
1 parent 50ca6a1 commit 6cc43ab

6 files changed

+71
-185
lines changed

test/examples/city_info_test.gleam

+5-21
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
import gleam/fetch
21
import gleam/http/request
32
import gleam/httpc
43
import gleam/int
54
import gleam/io
6-
import gleam/javascript/promise
75
import gleam/option
86
import sunny
97
import sunny/api/geocoding
@@ -13,7 +11,7 @@ pub fn city_info_test() {
1311
// API access.
1412
let sunny = sunny.new()
1513

16-
let req =
14+
let assert Ok(location) =
1715
sunny
1816
// If the location your searching for isn't the first result, try
1917
// `geocoding.get_locations`
@@ -22,9 +20,8 @@ pub fn city_info_test() {
2220
// Changing the language can impact the search results.
2321
|> geocoding.set_language(geocoding.French),
2422
)
25-
26-
use body <- send(req)
27-
let assert Ok(location) = geocoding.get_first_result(body)
23+
|> send
24+
|> geocoding.get_first_result
2825

2926
let assert option.Some(population) = location.population
3027

@@ -37,21 +34,8 @@ pub fn city_info_test() {
3734
)
3835
}
3936

40-
@target(erlang)
41-
fn send(req: request.Request(String), callback: fn(String) -> Nil) -> Nil {
37+
fn send(req: request.Request(String)) -> String {
4238
let assert Ok(res) = httpc.send(req)
4339

44-
callback(res.body)
45-
}
46-
47-
@target(javascript)
48-
fn send(req: request.Request(String), callback: fn(String) -> Nil) -> Nil {
49-
{
50-
use resp <- promise.try_await(fetch.send(req))
51-
use resp <- promise.try_await(fetch.read_text_body(resp))
52-
53-
callback(resp.body)
54-
promise.resolve(Ok(Nil))
55-
}
56-
Nil
40+
res.body
5741
}
+5-21
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
import gleam/dict
2-
import gleam/fetch
32
import gleam/http/request
43
import gleam/httpc
54
import gleam/io
6-
import gleam/javascript/promise
75
import gleam/option
86
import sunny
97
import sunny/api/forecast
@@ -24,17 +22,16 @@ pub fn current_temperature_test() {
2422
// convert it to a position.
2523
let position = position.Position(43.0, 5.0)
2624

27-
let req =
25+
let assert Ok(forecast_result) =
2826
sunny
2927
|> forecast.get_request(
3028
forecast.params(position)
3129
// All available variables are listed in the `sunny/api/forecast/instant` module.
3230
// Daily variables are in `sunny/api/forecast/daily`.
3331
|> forecast.set_current([instant.Temperature2m]),
3432
)
35-
36-
use body <- send(req)
37-
let assert Ok(forecast_result) = forecast.get_result(body)
33+
|> send
34+
|> forecast.get_result
3835

3936
let assert option.Some(data.CurrentData(data: data, ..)) =
4037
forecast_result.current
@@ -48,21 +45,8 @@ pub fn current_temperature_test() {
4845
)
4946
}
5047

51-
@target(erlang)
52-
fn send(req: request.Request(String), callback: fn(String) -> Nil) -> Nil {
48+
fn send(req: request.Request(String)) -> String {
5349
let assert Ok(res) = httpc.send(req)
5450

55-
callback(res.body)
56-
}
57-
58-
@target(javascript)
59-
fn send(req: request.Request(String), callback: fn(String) -> Nil) -> Nil {
60-
{
61-
use resp <- promise.try_await(fetch.send(req))
62-
use resp <- promise.try_await(fetch.read_text_body(resp))
63-
64-
callback(resp.body)
65-
promise.resolve(Ok(Nil))
66-
}
67-
Nil
51+
res.body
6852
}

test/examples/hourly_forecast.gleam

+5-21
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import birl
2-
import gleam/fetch
32
import gleam/float
43
import gleam/http/request
54
import gleam/httpc
65
import gleam/io
7-
import gleam/javascript/promise
86
import gleam/list
97
import sunny
108
import sunny/api/forecast
@@ -25,7 +23,7 @@ pub fn hourly_forecast_test() {
2523
// convert it to a position.
2624
let position = position.Position(43.0, 5.0)
2725

28-
let req =
26+
let assert Ok(forecast_result) =
2927
sunny
3028
|> forecast.get_request(
3129
forecast.params(position)
@@ -35,9 +33,8 @@ pub fn hourly_forecast_test() {
3533
|> forecast.set_hourly([instant.WeatherCode])
3634
|> forecast.set_forecast_days(1),
3735
)
38-
39-
use body <- send(req)
40-
let assert Ok(forecast_result) = forecast.get_result(body)
36+
|> send
37+
|> forecast.get_result
4138

4239
let assert Ok(hourly_weather) =
4340
forecast_result.hourly
@@ -55,21 +52,8 @@ pub fn hourly_forecast_test() {
5552
})
5653
}
5754

58-
@target(erlang)
59-
fn send(req: request.Request(String), callback: fn(String) -> Nil) -> Nil {
55+
fn send(req: request.Request(String)) -> String {
6056
let assert Ok(res) = httpc.send(req)
6157

62-
callback(res.body)
63-
}
64-
65-
@target(javascript)
66-
fn send(req: request.Request(String), callback: fn(String) -> Nil) -> Nil {
67-
{
68-
use resp <- promise.try_await(fetch.send(req))
69-
use resp <- promise.try_await(fetch.read_text_body(resp))
70-
71-
callback(resp.body)
72-
promise.resolve(Ok(Nil))
73-
}
74-
Nil
58+
res.body
7559
}

test/forecast_test.gleam

+22-37
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import gleam/dict
2-
import gleam/fetch
32
import gleam/http/request
43
import gleam/httpc
5-
import gleam/javascript/promise
64
import gleam/list
75
import gleam/option
86
import gleeunit/should
@@ -17,15 +15,15 @@ const coords = position.Position(43.0, 5.0)
1715
pub fn hourly_all_test() {
1816
let sunny = sunny.new()
1917

20-
let req =
18+
let forecast_result =
2119
sunny
2220
|> forecast.get_request(
2321
forecast.params(coords)
2422
|> forecast.set_all_hourly([]),
2523
)
26-
27-
use body <- send(req)
28-
let assert Ok(forecast_result) = forecast.get_result(body)
24+
|> send
25+
|> forecast.get_result
26+
|> should.be_ok
2927

3028
use var <- list.each(instant.all)
3129
let l =
@@ -40,15 +38,15 @@ pub fn hourly_all_test() {
4038
pub fn daily_all_test() {
4139
let sunny = sunny.new()
4240

43-
let req =
41+
let forecast_result =
4442
sunny
4543
|> forecast.get_request(
4644
forecast.params(coords)
4745
|> forecast.set_all_daily([]),
4846
)
49-
50-
use body <- send(req)
51-
let assert Ok(forecast_result) = forecast.get_result(body)
47+
|> send
48+
|> forecast.get_result
49+
|> should.be_ok
5250

5351
use var <- list.each(daily.all)
5452
let l =
@@ -63,14 +61,14 @@ pub fn daily_all_test() {
6361
pub fn minutely_all_test() {
6462
let sunny = sunny.new()
6563

66-
let req =
64+
let forecast_result =
6765
sunny
6866
|> forecast.get_request(
6967
forecast.params(coords) |> forecast.set_all_minutely([]),
7068
)
71-
72-
use body <- send(req)
73-
let assert Ok(forecast_result) = forecast.get_result(body)
69+
|> send
70+
|> forecast.get_result
71+
|> should.be_ok
7472

7573
use var <- list.each(instant.all)
7674
let l =
@@ -85,14 +83,14 @@ pub fn minutely_all_test() {
8583
pub fn current_all_test() {
8684
let sunny = sunny.new()
8785

88-
let req =
86+
let forecast_result =
8987
sunny
9088
|> forecast.get_request(
9189
forecast.params(coords) |> forecast.set_all_current([]),
9290
)
93-
94-
use body <- send(req)
95-
let assert Ok(forecast_result) = forecast.get_result(body)
91+
|> send
92+
|> forecast.get_result
93+
|> should.be_ok
9694

9795
let assert option.Some(current) = forecast_result.current
9896

@@ -105,12 +103,12 @@ pub fn current_all_test() {
105103
pub fn none_test() {
106104
let sunny = sunny.new()
107105

108-
let req =
106+
let forecast_result =
109107
sunny
110108
|> forecast.get_request(forecast.params(coords))
111-
112-
use body <- send(req)
113-
let assert Ok(forecast_result) = forecast.get_result(body)
109+
|> send
110+
|> forecast.get_result
111+
|> should.be_ok
114112

115113
forecast_result.hourly.time
116114
|> list.is_empty
@@ -144,21 +142,8 @@ pub fn none_test() {
144142
|> should.be_error
145143
}
146144

147-
@target(erlang)
148-
fn send(req: request.Request(String), callback: fn(String) -> Nil) -> Nil {
145+
fn send(req: request.Request(String)) -> String {
149146
let assert Ok(res) = httpc.send(req)
150147

151-
callback(res.body)
152-
}
153-
154-
@target(javascript)
155-
fn send(req: request.Request(String), callback: fn(String) -> Nil) -> Nil {
156-
{
157-
use resp <- promise.try_await(fetch.send(req))
158-
use resp <- promise.try_await(fetch.read_text_body(resp))
159-
160-
callback(resp.body)
161-
promise.resolve(Ok(Nil))
162-
}
163-
Nil
148+
res.body
164149
}

0 commit comments

Comments
 (0)