Skip to content

Commit e7bd020

Browse files
committed
2024d03 tests
1 parent afed02d commit e7bd020

File tree

3 files changed

+42
-11
lines changed

3 files changed

+42
-11
lines changed

notebooks/y2024/d03.clj

+7-11
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,9 @@
2525
+
2626
(re-seq mul-pattern text)))
2727

28-
(= 161 (parse-and-multiply "xmul(2,4)%&mul[3,7]!@^do_not_mul(5,5)+mul(32,64]then(mul(11,8)mul(8,5))"))
28+
(parse-and-multiply "xmul(2,4)%&mul[3,7]!@^do_not_mul(5,5)+mul(32,64]then(mul(11,8)mul(8,5))")
2929

30-
^{:nextjournal.clerk/visibility {:result :hide}}
31-
(comment
32-
(= 173419328 (parse-and-multiply (slurp "input/2024/input3.txt"))))
30+
(parse-and-multiply (input/get-input 2024 3))
3331

3432
; ## Del 2
3533

@@ -50,11 +48,9 @@
5048
[:cat [:capture "mul"] "(" [:capture [:+ :digit]] "," [:capture [:+ :digit]] ")"]]])
5149
text)))
5250

53-
(= 48 (parse-and-multiply-when "xmul(2,4)&mul[3,7]!^don't()_mul(5,5)+mul(32,64](mul(11,8)undo()?mul(8,5))"))
51+
(parse-and-multiply-when "xmul(2,4)&mul[3,7]!^don't()_mul(5,5)+mul(32,64](mul(11,8)undo()?mul(8,5))")
5452

55-
^{:nextjournal.clerk/visibility {:result :hide}}
56-
(comment
57-
(= 98059175 (parse-and-multiply-when (slurp "input/2024/input3.txt"))))
53+
(parse-and-multiply-when (slurp "input/2024/input3.txt"))
5854

5955
; Men reell input ble regnet feil!! Da får vi gå dumt til verks.
6056

@@ -90,11 +86,11 @@
9086
sum)))
9187
sum)))
9288

93-
(= 48 (process-operations (get-operations "xmul(2,4)&mul[3,7]!^don't()_mul(5,5)+mul(32,64](mul(11,8)undo()?mul(8,5))")))
89+
(process-operations (get-operations "xmul(2,4)&mul[3,7]!^don't()_mul(5,5)+mul(32,64](mul(11,8)undo()?mul(8,5))"))
9490

9591
; Fortsatt riktig på testdata, og nå blir det også riktig på inputten:
9692

97-
(= 90669332 (process-operations (get-operations (input/get-input 2024 3))))
93+
(process-operations (get-operations (input/get-input 2024 3)))
9894

9995
; ## Del 2 igjen
10096

@@ -123,4 +119,4 @@
123119

124120
(prep-input "xmul(2,4)&mul[3,7]!^don't()_mul(5,5)+mul(32,64](mul(11,8)undo()?don't()mul(8,5))")
125121

126-
(= 90669332 (parse-and-multiply (prep-input (input/get-input 2024 3))))
122+
(parse-and-multiply (prep-input (input/get-input 2024 3)))

test/y2024/d03_test.clj

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
(ns y2024.d03-test
2+
(:require
3+
[advent-of-code-clj.input :as input]
4+
[clojure.test :refer [deftest is]]
5+
[y2024.d03 :as sut]))
6+
7+
(deftest part-1-test
8+
(is (= 161 (sut/parse-and-multiply "xmul(2,4)%&mul[3,7]!@^do_not_mul(5,5)+mul(32,64]then(mul(11,8)mul(8,5))")))
9+
(is (= 173419328 (sut/parse-and-multiply (input/get-input 2024 3)))))
10+
11+
(deftest part-2-test
12+
(is (= 48 (sut/parse-and-multiply-when "xmul(2,4)&mul[3,7]!^don't()_mul(5,5)+mul(32,64](mul(11,8)undo()?mul(8,5))")))
13+
(is (= 48 (sut/process-operations (sut/get-operations "xmul(2,4)&mul[3,7]!^don't()_mul(5,5)+mul(32,64](mul(11,8)undo()?mul(8,5))"))))
14+
(is (= 90669332 (sut/process-operations (sut/get-operations (input/get-input 2024 3))))))
15+
16+
(deftest part-2-again-test
17+
(is (= 90669332 (sut/parse-and-multiply (sut/prep-input (input/get-input 2024 3))))))

tests.edn

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{:kaocha/tests
2+
[{:kaocha.testable/type :kaocha.type/clojure.test,
3+
:kaocha.testable/id :unit,
4+
:kaocha/ns-patterns ["-test$"],
5+
:kaocha/source-paths ["src" "notebooks"],
6+
:kaocha/test-paths ["test"],
7+
:kaocha.filter/skip-meta [:kaocha/skip]}],
8+
:kaocha/fail-fast? false,
9+
:kaocha/color? true,
10+
:kaocha/cli-options {:config-file "tests.edn", :print-config true},
11+
:kaocha.plugin.randomize/seed 156086537,
12+
:kaocha.plugin.randomize/randomize? true,
13+
:kaocha/plugins
14+
[:kaocha.plugin/randomize
15+
:kaocha.plugin/filter
16+
:kaocha.plugin/capture-output],
17+
:kaocha.plugin.capture-output/capture-output? true,
18+
:kaocha/reporter [kaocha.report/dots]}

0 commit comments

Comments
 (0)