Giter Site home page Giter Site logo

elm-twelve-tone's Introduction

Test first elm

Read this at medium: https://medium.com/@danigb/test-first-elm-5d5cceea0efc#.bpr6l1yxy

I've started to learn elm-lang. It's seems to be a wondeful but strange language for people like me coming from an imperative (and mostly object oriented) languages background.

While REPLs are great to do exploratory work and understand how things works in a programming language I'm more used to test driven approach that allows that exploratory approach with the adventage of persisted files (so I can come back to remember what I did).

Surprisely I didn't found a quick guide to test driven elm programming (probably tests are not as fundamental in elm as in other languages due it's strong types nature). Anyway, this is my two cents.

Etudes Op. 1: Twelve tone

I'm reading "Notes from the Metalevel: An Introduction to Computer Composition" so, for the test I'll steal some examples from Chapter 9 that implements some basic twelve-tone and [set-theory] functions. If you don't know what is all about, don't worry, they are very simple functions.

The book it's used to be online, but I can't found it now. If you're interested, you can read an excerpt from the Chapter 9 here but it's not necessary at all to follow this tutorial.

Project setup

First thing to do is install elm 0.17. This is the latest version at the time of this writing and it brings big changes, starting with elm lang internals and covering elm package names, so it's important to ensure you have this version installed.

Then, we will use elm-package cli to generate the elm-package.json automatically and download the dependencies (we'll use elm-lang/core and elm-community/test packages):

mkdir elm-twelve-tone
cd elm-twelve-tone
mkdir src # source files will be here
mkdir test # test files will be here
elm-package install -y elm-lang/core
elm-package install -y elm-community/test

The -y option allows elm-package to do it's work without asking questions, but it's completely optional.

## Write the first test

The first function will convert from midi note numbers to pitch class numbers. In test driven programming, we start writing the test, so here is our first test/TwelveToneTest.elm attempt:

import ElmTest exposing (..)

tests : Test
tests =
  suite "Chapter 9: Etudes, Op. 3: Iteration, Rows and Sets"
  [
    test "noteToPc" (assertEqual 7 (noteToPc 55))
  ]

main =
    runSuite tests

Nothing very fancy here: just importing ElmTest (from elm-community/test), create a function that returns a suite of tests and declaring a main function that uses runSuite to run the tests.

Notice that, unlike Javascript, the expected value goes on the left. This is not important to pass the test, but matters when dealing with test assertion errors.

Run tests

To run the tests we need first to compile to javascript (using elm-make) and then run the result with node. Let's make a script:

#!/bin/bash
mkdir -p tmp
rm tmp/run.js
elm-make test/TwelveToneTest.elm --output tmp/run.js
node tmp/run.js

Elm is well known for it's detailed and helpful error messages. Here's our:

-- NAMING ERROR ---------------------------------------- test/TwelveToneTest.elm

Cannot find variable `noteToPc`

7|           test "noteToPc" (assertEqual 7 (noteToPc 55))
                                             ^^^^^^^^

Write the actual code

Let's write the actual code. The pitch class numbers are just the note numbers without the octave information. Since there are 12 notes per octave, and for each octave the first pitch class is 0 and the last is 11, we just only need to apply module operator:

module TwelveTone exposing (noteToPc)

type alias Note = Int
type alias Pc = Int

noteToPc : Note -> Pc
noteToPc note =
  note % 12

As you can see, I defined a couple of type aliases, just to be clear about the purpose of the function.

Import module

Since we are storing the TwelveTone.elm source code into the src/ directory, we need first to change the the elm-package.json file so source-directories is ["src/"].

Now we can import the module into the tests:

import ElmTest exposing (..)
import TwelveTone exposing (..)

tests : Test
tests =
  suite "Chapter 9: Etudes, Op. 3: Iteration, Rows and Sets"
  [
    test "noteToPc" (assertEqual 7 (noteToPc 55))
  ]

main =
    runSuite tests

If we run the tests now we'll see "All tests passed" message.

Coda: Learn some elm

Remember the purpose of this setup is to do some exploratory programming and learn some test. Let's try it by implement a couple of functions from the book chapter. First a function to convert from a list of note numbers to a list of pitch class numbers. Test first:

test "listToPcs" (assertEqual [7,10,2,6] (listToPcs [55,58,62,66]))

Then the code:

import List exposing (map)

...
listToPcs : List(Note) -> List Pc
listToPcs notes =
  map noteToPc notes

Pretty straightforward. Just remember to import map function from List module.

But the next one is more tricky. We want to normalize the pitch class notes, so always this first note of the list is 0 and the rest are relative to that one. Here's the test:

test "normalizedPcs" (assertEqual [0,3,7,11] (normalizedPcs [55,58,62,66]))

Basically, we want to substract the first element of the list to the rest of the elements. In my first attempt I would write something like this:

import List exposing (map, head)

...
normalizedPcs : List(Note) -> List Pc
normalizedPcs notes =
  let
    first = head notes
  in
    map (\note -> noteToPc (note - first)) notes

The (\param -> body) construct is just an anonymouse function that receives a note and returns the pitch class number of the result of substract the first element of the list to the note. And then we map the notes with the function.

Let's run our tests:

-- TYPE MISMATCH ------------------------------------------ ./src/TwelveTone.elm

The right argument of (-) is causing a type mismatch.

22|                             note - first)
                                       ^^^^^
(-) is expecting the right argument to be a:

    number

But the right argument is:

    Maybe a

Hint: I always figure out the type of the left argument first and if it is
acceptable on its own, I assume it is "correct" in subsequent checks. So the
problem may actually be in how the left and right arguments interact.

The problem is that head doesn't return an integer as expected, but a Maybe(Int). If we don't get an integer is because the list is empty, so we should return an empty list. case to the rescue:

normalizedPcs : List(Note) -> List Pc
normalizedPcs notes =
  let
    first = head notes
  in
    case first of
      Just f -> map (\note -> noteToPc (note - f)) notes
      Nothing -> []

This is a very common pattern when dealing with Maybe.

The full score

You can get the full source code at elm-twelve-tone. I hope you find it useful.

elm-twelve-tone's People

Contributors

danigb avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.