From afc981a9ce8545be3e24c250c9af050f7f14c145 Mon Sep 17 00:00:00 2001 From: Dmitry Kokorin Date: Tue, 8 Jun 2021 17:06:38 +0300 Subject: [PATCH] Python: acronym --- python/acronym/.exercism/metadata.json | 1 + python/acronym/README.md | 55 ++++++++++++++++++++++++++ python/acronym/acronym.py | 7 ++++ python/acronym/acronym_test.py | 43 ++++++++++++++++++++ 4 files changed, 106 insertions(+) create mode 100644 python/acronym/.exercism/metadata.json create mode 100644 python/acronym/README.md create mode 100644 python/acronym/acronym.py create mode 100644 python/acronym/acronym_test.py diff --git a/python/acronym/.exercism/metadata.json b/python/acronym/.exercism/metadata.json new file mode 100644 index 0000000..02755a0 --- /dev/null +++ b/python/acronym/.exercism/metadata.json @@ -0,0 +1 @@ +{"track":"python","exercise":"acronym","id":"3fdfaf59cab94bc1b2feb5594bc866de","url":"https://exercism.io/my/solutions/3fdfaf59cab94bc1b2feb5594bc866de","handle":"DmitryKokorin","is_requester":true,"auto_approve":false} \ No newline at end of file diff --git a/python/acronym/README.md b/python/acronym/README.md new file mode 100644 index 0000000..cf6e3a5 --- /dev/null +++ b/python/acronym/README.md @@ -0,0 +1,55 @@ +# Acronym + +Convert a phrase to its acronym. + +Techies love their TLA (Three Letter Acronyms)! + +Help generate some jargon by writing a program that converts a long name +like Portable Network Graphics to its acronym (PNG). + + +## Exception messages + +Sometimes it is necessary to raise an exception. When you do this, you should include a meaningful error message to +indicate what the source of the error is. This makes your code more readable and helps significantly with debugging. Not +every exercise will require you to raise an exception, but for those that do, the tests will only pass if you include +a message. + +To raise a message with an exception, just write it as an argument to the exception type. For example, instead of +`raise Exception`, you should write: + +```python +raise Exception("Meaningful message indicating the source of the error") +``` + +## Running the tests + +To run the tests, run `pytest acronym_test.py` + +Alternatively, you can tell Python to run the pytest module: +`python -m pytest acronym_test.py` + +### Common `pytest` options + +- `-v` : enable verbose output +- `-x` : stop running tests on first failure +- `--ff` : run failures from previous test before running other test cases + +For other options, see `python -m pytest -h` + +## Submitting Exercises + +Note that, when trying to submit an exercise, make sure the solution is in the `$EXERCISM_WORKSPACE/python/acronym` directory. + +You can find your Exercism workspace by running `exercism debug` and looking for the line that starts with `Workspace`. + +For more detailed information about running tests, code style and linting, +please see [Running the Tests](http://exercism.io/tracks/python/tests). + +## Source + +Julien Vanier [https://github.com/monkbroc](https://github.com/monkbroc) + +## Submitting Incomplete Solutions + +It's possible to submit an incomplete solution so you can see how others have completed the exercise. diff --git a/python/acronym/acronym.py b/python/acronym/acronym.py new file mode 100644 index 0000000..d86fef9 --- /dev/null +++ b/python/acronym/acronym.py @@ -0,0 +1,7 @@ +import re + +WORD_REGEX = re.compile(r"([^\W_]+(?:'[^\W_]+)?)") + + +def abbreviate(words): + return ''.join(s[0].upper() for s in re.findall(WORD_REGEX, words)) diff --git a/python/acronym/acronym_test.py b/python/acronym/acronym_test.py new file mode 100644 index 0000000..685cf30 --- /dev/null +++ b/python/acronym/acronym_test.py @@ -0,0 +1,43 @@ +import unittest + +from acronym import abbreviate + +# Tests adapted from `problem-specifications//canonical-data.json` + + +class AcronymTest(unittest.TestCase): + def test_basic(self): + self.assertEqual(abbreviate("Portable Network Graphics"), "PNG") + + def test_lowercase_words(self): + self.assertEqual(abbreviate("Ruby on Rails"), "ROR") + + def test_punctuation(self): + self.assertEqual(abbreviate("First In, First Out"), "FIFO") + + def test_all_caps_word(self): + self.assertEqual(abbreviate("GNU Image Manipulation Program"), "GIMP") + + def test_punctuation_without_whitespace(self): + self.assertEqual(abbreviate("Complementary metal-oxide semiconductor"), "CMOS") + + def test_very_long_abbreviation(self): + self.assertEqual( + abbreviate( + "Rolling On The Floor Laughing So Hard That My Dogs Came Over And Licked Me" + ), + "ROTFLSHTMDCOALM", + ) + + def test_consecutive_delimiters(self): + self.assertEqual(abbreviate("Something - I made up from thin air"), "SIMUFTA") + + def test_apostrophes(self): + self.assertEqual(abbreviate("Halley's Comet"), "HC") + + def test_underscore_emphasis(self): + self.assertEqual(abbreviate("The Road _Not_ Taken"), "TRNT") + + +if __name__ == "__main__": + unittest.main()