Starting code for the GildedRose Refactoring Kata in many programming languages.
Go to file
2018-12-03 21:16:10 +01:00
abap starting code and tests for ABAP 2016-03-21 10:57:47 -05:00
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 Common Lisp version by Rainer Joswig 2016-06-02 21:21:32 +02:00
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 C# for .net core 2018-06-14 16:54:48 +02:00
d Add D language version 2018-05-09 18:23:31 +02:00
dart removed pubspec.lock 2016-03-18 22:39:31 -04:00
elixir Moves language specific Git ignores into language subfolders. 2018-12-02 20:31:26 +01:00
erlang Add Erlang version 2018-03-05 19:38:49 +01:00
fsharp add fsharp version 2015-10-26 13:38:45 +01:00
go Go: Extracts texttest_feature.go from main Gilded Rose, write test similar to other languages. 2018-12-03 00:18:46 +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 reverted GildedRose to original code 2017-01-11 21:32:08 +01:00
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 Use gradle to build kotlin files 2018-01-31 10:52:53 +01:00
pascal Port to (Turbo) Pascal. Feeling retro ;-) 2017-12-08 15:53:56 +01:00
perl add texttest fixture for Perl 5 code 2014-05-02 12:25:12 +02:00
perl6 Moves language specific Git ignores into language subfolders. 2018-12-02 20:31:26 +01:00
php add missing texttest fixture for PHP code 2014-04-13 15:57:10 +02:00
plsql turn serveroutput on so we see the results of the texttest fixture 2014-07-08 23:52:20 +02:00
python Moves language specific Git ignores into language subfolders. 2018-12-02 20:31:26 +01:00
R Eclipse/StatET R environment configuration (can be imported as existing 2014-12-05 20:09:51 +01:00
ruby should syntax is deprecated, changed the first test to expect syntax 2016-08-02 15:03:07 +02:00
rust Add rust version 2015-10-03 21:14:18 +02:00
scala add TexttestFixture.scala 2018-07-15 14:32:40 +02:00
scheme Rename texttest fixture, fix type in name. 2018-12-03 21:16:10 +01:00
Smalltalk Fixes encoding Smalltalk source. 2018-12-02 21:48:42 +01:00
swift Moved Swift code into package 2016-10-27 13:08:11 +07:00
texttests add texttest fixture for Perl 5 code 2014-05-02 12:25:12 +02:00
TypeScript Use newer version of TypeScript. Use proper project name in project properties. 2018-12-02 22:06:14 +01:00
.bettercodehub.yml adding config file for bettercodehub so I can see how many refactoring targets it finds in this repo 2017-05-12 11:29:38 +02:00
GildedRoseRequirements_es.md Update GildedRoseRequirements_es.md 2018-03-03 12:24:57 +01:00
GildedRoseRequirements_fr.md Improve french sentence 2018-08-10 17:40:11 +08:00
GildedRoseRequirements_pt-BR.md Update GildedRoseRequirements_pt-BR.md 2017-07-13 18:46:22 -03:00
GildedRoseRequirements_ru.txt Added requirements specification in russian language. 2016-06-11 23:53:18 +04:00
GildedRoseRequirements_zh.txt Correct spelling of Chinese translation 2016-06-27 15:23:25 +08:00
GildedRoseRequirements.txt fix typo in requirements 2016-01-25 20:42:55 +01:00
license.txt added MIT license 2015-07-07 19:46:17 +02:00
README.md Fix Twitter link 2018-06-03 16:41:00 -04:00

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