Starting code for the GildedRose Refactoring Kata in many programming languages.
Go to file
2019-04-23 21:40:26 -07:00
abap
Ada Renames README files consistently. 2018-12-02 20:39:39 +01:00
c99 Add CMake and Unity test framework for c99 2018-10-30 18:29:14 +01:00
C Renames README files consistently. 2018-12-02 20:39:39 +01:00
clisp
COBOL/mf Add test project for mf cobol. 2018-10-10 15:27:55 +02:00
cpp Renames README files consistently. 2018-12-02 20:39:39 +01:00
csharp added missing ApprovalTest.cs and ThirtyDays.txt to csharp project 2018-09-19 11:11:20 +02:00
csharpcore
d
dart
elixir Moves language specific Git ignores into language subfolders. 2018-12-02 20:31:26 +01:00
erlang
fsharp
fsharp-core Added F# starter solution based on .NET Core 2019-02-28 13:48:45 -06:00
go Rename Go's texttest fixture, fix type in name. 2018-12-03 21:18:33 +01:00
Groovy Renames README files consistently. 2018-12-02 20:39:39 +01:00
haskell chore(haskell): update base and add stack file 2018-10-22 23:07:04 +02:00
Java
Java-Spock Renames Java with Spock language without blanks in folder name. 2018-12-02 20:48:45 +01:00
js-jasmine Adds Babel transpiler to JS projects so code runs on older versions of Node, 2018-12-02 23:13:25 +01:00
js-mocha Adds Babel transpiler to JS projects so code runs on older versions of Node, 2018-12-02 23:13:25 +01:00
Kotlin
pascal
perl
perl6 Moves language specific Git ignores into language subfolders. 2018-12-02 20:31:26 +01:00
php5 Move php to php5 and add a php7 example that uses composer 2019-04-23 14:56:30 -07:00
php7 Add a special rule for Sulfuras quality 2019-04-23 21:40:26 -07:00
plsql
python Moves language specific Git ignores into language subfolders. 2018-12-02 20:31:26 +01:00
R
ruby
rust
scala
scheme Fixes bug in Scheme version, not deeply nested enough. 2018-12-03 22:45:26 +01:00
Smalltalk Fixes encoding Smalltalk source. 2018-12-02 21:48:42 +01:00
swift
texttests
TypeScript excluded none spec files from test runner 2018-12-10 13:01:57 +01:00
xslt Description how to run the XSLT. 2018-12-07 23:53:54 +01:00
.bettercodehub.yml
.gitignore Move php to php5 and add a php7 example that uses composer 2019-04-23 14:56:30 -07:00
GildedRoseRequirements_es.md
GildedRoseRequirements_fr.md
GildedRoseRequirements_pt-BR.md
GildedRoseRequirements_ru.txt
GildedRoseRequirements_zh.txt
GildedRoseRequirements.txt
license.txt
README.md

Gilded Rose Refactoring Kata

This Kata was originally created by Terry Hughes (http://twitter.com/TerryHughes). It is already on GitHub here. See also Bobby Johnson's description of the kata.

I translated the original C# into a few other languages, (with a little help from my friends!), and slightly changed the starting position. This means I've actually done a small amount of refactoring already compared with the original form of the kata, and made it easier to get going with writing tests by giving you one failing unit test to start with. I also added test fixtures for Text-Based approval testing with TextTest (see the TextTests)

As Bobby Johnson points out in his article "Why Most Solutions to Gilded Rose Miss The Bigger Picture", it'll actually give you better practice at handling a legacy code situation if you do this Kata in the original C#. However, I think this kata is also really useful for practicing writing good tests using different frameworks and approaches, and the small changes I've made help with that. I think it's also interesting to compare what the refactored code and tests look like in different programming languages.

I wrote this article "Writing Good Tests for the Gilded Rose Kata" about how you could use this kata in a coding dojo.

How to use this Kata

The simplest way is to just clone the code and start hacking away improving the design. You'll want to look at the "Gilded Rose Requirements" which explains what the code is for. I strongly advise you that you'll also need some tests if you want to make sure you don't break the code while you refactor.

You could write some unit tests yourself, using the requirements to identify suitable test cases. I've provided a failing unit test in a popular test framework as a starting point for most languages.

Alternatively, use the "Text-Based" tests provided in this repository. (Read more about that in the next section)

Whichever testing approach you choose, the idea of the exercise is to do some deliberate practice, and improve your skills at designing test cases and refactoring. The idea is not to re-write the code from scratch, but rather to practice designing tests, taking small steps, running the tests often, and incrementally improving the design.

Text-Based Approval Testing

This is a testing approach which is very useful when refactoring legacy code. Before you change the code, you run it, and gather the output of the code as a plain text file. You review the text, and if it correctly describes the behaviour as you understand it, you can "approve" it, and save it as a "Golden Master". Then after you change the code, you run it again, and compare the new output against the Golden Master. Any differences, and the test fails.

It's basically the same idea as "assertEquals(expected, actual)" in a unit test, except the text you are comparing is typically much longer, and the "expected" value is saved from actual output, rather than being defined in advance.

Typically a piece of legacy code may not produce suitable textual output from the start, so you may need to modify it before you can write your first text-based approval test. That could involve inserting log statements into the code, or just writing a "main" method that executes the code and prints out what the result is afterwards. It's this latter approach we are using here to test GildedRose.

The Text-Based tests in this repository are designed to be used with the tool "TextTest" (http://texttest.org). This tool helps you to organize and run text-based tests. There is more information in the README file in the "texttests" subdirectory.

Get going quickly using Cyber-Dojo

I've also set this kata up on cyber-dojo for several languages, so you can get going really quickly:

Better Code Hub

I analysed this repo according to the clean code standards on Better Code Hub just to get an independent opinion of how bad the code is. Perhaps unsurprisingly, the compliance score is low!

BCH compliance