Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
50e4182
workshop2
prepas May 2, 2018
0687034
change workshop #3
prepas May 9, 2018
f3221cf
03_armstrong_number
prepas May 10, 2018
d20ec51
added 04_roman_numerals task for workshop
Vv-git May 15, 2018
ab6da91
04_roman_numerals
prepas May 16, 2018
fb18071
04_roman_numerals
prepas May 16, 2018
b41c628
fix build
May 23, 2018
c7fe024
add bank ocr
May 23, 2018
429bf52
update readme
May 23, 2018
302c6c8
05_bank_ocr
May 23, 2018
3888d5a
05_bank_ocr
May 23, 2018
174d704
05_bank_ocr
May 23, 2018
8a26ae0
05bankocr_homework
May 23, 2018
9964bf7
05_word_wrapp
May 30, 2018
a19db22
added Allergies task description
driverdevteam May 31, 2018
655c03b
added 06_allergies homework
Vv-git May 31, 2018
dc1a3e2
modified description of 06_allergies homework
Vv-git May 31, 2018
b8b350d
07_coffee
Jun 6, 2018
69b5a3f
07_coffee
Jun 6, 2018
c0c03e6
Merge branch 'master' of https://github.com/driverdevteam/tdd-course-2
Jun 6, 2018
274381f
07_coffee
Jun 6, 2018
7eaa1fc
07_coffee
Jun 6, 2018
bde741d
created tests list
Jun 13, 2018
c706371
created interface
Jun 13, 2018
ac3d938
created mock
Jun 13, 2018
f671781
created FileCopier
Jun 13, 2018
55e832e
red test - CopyOneFile
Jun 13, 2018
3e6fb15
green test - CopyOneFile
Jun 13, 2018
b4255d0
refactored
Jun 13, 2018
8ef9292
red test - CopyOneFile
Jun 13, 2018
77617a9
green test - CopyOneFile
Jun 13, 2018
05d35b8
fixed mistakes
Jun 13, 2018
546cbc9
red test - JoinPath
Jun 13, 2018
076ddfb
green test - JoinPath
Jun 13, 2018
12f544a
refactored
Jun 13, 2018
4a0636b
green test - CopyManyFile
Jun 13, 2018
efe9876
red test - CopyFolder
Jun 14, 2018
2cd4746
green test - CopyFolder
Jun 14, 2018
8529707
refactored
Jun 14, 2018
1d13cab
green test - CopyFilesAndFoldersRecorsive
Jun 14, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
187 changes: 187 additions & 0 deletions tdd_intro/homework/05_bank_ocr/test.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,187 @@
/*### Bank OCR

Your manager has recently purchased a machine that assists in reading letters and faxes sent in by branch offices. The machine scans the paper documents, and produces a file with a number of entries. You will write a program to parse this file.

#### Specification
#### User Story 1

The following format is created by the machine:
```
_ _ _ _ _ _ _
| _| _||_||_ |_ ||_||_|
||_ _| | _||_| ||_| _|
```
Each entry is 3 lines long, and each line has 27 characters. 3 lines of each entry contain an account number written using pipes and underscores.

Each account number should have 9 digits, all of which should be in the range 0-9. A normal file contains around 500 entries.

Write a program that can take this file and parse it into actual account numbers.

Example input and output
```
_ _ _ _ _ _ _ _ _
| || || || || || || || || |
|_||_||_||_||_||_||_||_||_|

=> 000000000

| | | | | | | | |
| | | | | | | | |

=> 111111111

_ _ _ _ _ _ _ _ _
_| _| _| _| _| _| _| _| _|
|_ |_ |_ |_ |_ |_ |_ |_ |_

=> 222222222

_ _ _ _ _ _ _ _ _
_| _| _| _| _| _| _| _| _|
_| _| _| _| _| _| _| _| _|

=> 333333333

|_||_||_||_||_||_||_||_||_|
| | | | | | | | |

=> 444444444

_ _ _ _ _ _ _ _ _
|_ |_ |_ |_ |_ |_ |_ |_ |_
_| _| _| _| _| _| _| _| _|

=> 555555555

_ _ _ _ _ _ _ _ _
|_ |_ |_ |_ |_ |_ |_ |_ |_
|_||_||_||_||_||_||_||_||_|

=> 666666666

_ _ _ _ _ _ _ _ _
| | | | | | | | |
| | | | | | | | |

=> 777777777

_ _ _ _ _ _ _ _ _
|_||_||_||_||_||_||_||_||_|
|_||_||_||_||_||_||_||_||_|

=> 888888888

_ _ _ _ _ _ _ _ _
|_||_||_||_||_||_||_||_||_|
_| _| _| _| _| _| _| _| _|

=> 999999999

_ _ _ _ _ _ _
| _| _||_||_ |_ ||_||_|
||_ _| | _||_| ||_| _|

=> 123456789
```
*/
#include <gtest/gtest.h>

// check matrix for one digit 3x3
// parse one digit
// - parse 1
// - parse 2
// - parse 0-9
// - check invalid one digit
// parse several digits (27x3)
// parse 27x3 (9 digits)
// - check matrix 27x3
// - parse
// parse several lines

using Digit = std::vector<std::string>;

const Digit s_1({" ",
" |",
" |"});

const Digit s_2({" _ ",
" _|",
"|_ "});

std::vector<Digit> s_digits({

});

bool CheckMatrixDimension(const Digit& digit)
{
const size_t prefferedSize = 3;

if (digit.size() != prefferedSize)
{
return false;
}

for (const std::string& line : digit)
{
if (line.size() != prefferedSize)
{
return false;
}
}

return true;
}

std::string ParseDigit(const Digit& digit)
{
if (digit == Digit({" ",
" |",
" |"}))
{
return "1";
}
else if (digit == Digit({" _ ",
" _|",
"|_ "}))
{
return "2";
}

return "8";
}

TEST(BankOCRTests, Check_Matrix_dimension_true)
{
Digit digit = {" ", " ", " "};
EXPECT_TRUE(CheckMatrixDimension(digit));
}

TEST(BankOCRTests, Check_Matrix_dimension_false)
{
Digit digit = {" ", "! ", " "};
EXPECT_FALSE(CheckMatrixDimension(digit));
}

TEST(BankOCRTests, ParseDigit_1)
{
Digit digit = {" ",
" |",
" |"};
EXPECT_EQ("1", ParseDigit(digit));
}

TEST(BankOCRTests, ParseDigit_2)
{
Digit digit = {" _ ",
" _|",
"|_ "};
EXPECT_EQ("2", ParseDigit(digit));
}

TEST(BankOCRTests, ParseDigit_8)
{
Digit digit = {" _ ",
"|_|",
"|_|"};
EXPECT_EQ("8", ParseDigit(digit));
}
25 changes: 25 additions & 0 deletions tdd_intro/homework/06_allergies/test.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/*
Given a person's allergy score, determine whether or not they're allergic to a given item, and their full list of allergies.
An allergy test produces a single numeric score which contains the information about all the allergies the person has (that they were tested for).
The list of items (and their value) that were tested are:
eggs (1)
peanuts (2)
shellfish (4)
strawberries (8)
tomatoes (16)
chocolate (32)
pollen (64)
cats (128)
So if Tom is allergic to peanuts and chocolate, he gets a score of 34.

Now, given just that score of 34, your program should be able:
To say have Tom allergic to specific product or not.
To give list of all allergens Tom is allergic to.

E.g. it can be class with methods IsAllergicTo(string), List() and receiving allergyScore in constructor

Note: a given score may include allergens not listed above (i.e. allergens that score 256, 512, 1024, etc.).
Your program should ignore those components of the score.
For example, if the allergy score is 257, your program should only report the eggs (1) allergy.
*/
#include <gtest/gtest.h>
88 changes: 0 additions & 88 deletions tdd_intro/homework/06_bank_ocr/test.cpp

This file was deleted.

Loading