Browse Source
Merge branch 'feature/get-current-customer-account-balance' of https://gitlab2.informatik.hs-fulda.de/fdai7057/bankmanagement-system into feature/get-customer-current-account-balance
remotes/origin/feature/update-current-customer-account-balance
Merge branch 'feature/get-current-customer-account-balance' of https://gitlab2.informatik.hs-fulda.de/fdai7057/bankmanagement-system into feature/get-customer-current-account-balance
remotes/origin/feature/update-current-customer-account-balance
Shivam Chaudhary
2 years ago
28 changed files with 781 additions and 21 deletions
-
5build-project.sh
-
6src/CustomerData.txt
-
4src/CustomerProperties.h
-
97src/LoginCustomer.c
-
10src/LoginCustomer.h
-
7src/main.c
-
9team.md
-
3tests/build/test/cache/defines_dependency.yml
-
242tests/build/test/cache/input.yml
-
87tests/build/test/cache/test_LoginCustomer.c
-
3tests/build/test/dependencies/LoginCustomer.d
-
6tests/build/test/dependencies/cmock.d
-
4tests/build/test/dependencies/test_LoginCustomer.d
-
4tests/build/test/dependencies/test_LoginCustomer_runner.d
-
4tests/build/test/dependencies/unity.d
-
BINtests/build/test/out/c/LoginCustomer.o
-
BINtests/build/test/out/c/cmock.o
-
BINtests/build/test/out/c/test_LoginCustomer.o
-
BINtests/build/test/out/c/test_LoginCustomer_runner.o
-
BINtests/build/test/out/c/unity.o
-
BINtests/build/test/out/test_LoginCustomer.out
-
87tests/build/test/preprocess/files/test_LoginCustomer.c
-
3tests/build/test/preprocess/includes/test_LoginCustomer.c
-
18tests/build/test/results/test_LoginCustomer.pass
-
81tests/build/test/runners/test_LoginCustomer_runner.c
-
101tests/project.yml
-
0tests/test/support/.gitkeep
-
21tests/test/test_LoginCustomer.c
@ -1,5 +0,0 @@ |
|||
clear |
|||
cd src/ |
|||
gcc main.c |
|||
./a.out |
|||
rm a.out |
@ -0,0 +1,6 @@ |
|||
1234=example |
|||
ID=1234 |
|||
forename=Max |
|||
Surname=Mustermann |
|||
password=example |
|||
balance=0 |
@ -0,0 +1,4 @@ |
|||
typedef struct Customer{ |
|||
char *ID, *forename, *surname, *password; |
|||
float balance; |
|||
}customer_t; |
@ -0,0 +1,97 @@ |
|||
#include "LoginCustomer.h" |
|||
|
|||
bool checkLogin(bool loginSuccessful) |
|||
{ |
|||
return (loginSuccessful) ? true : false; |
|||
} |
|||
|
|||
void collectCustomerDataForLogin(int attempts) |
|||
{ |
|||
customer_t c; |
|||
c.ID = calloc(15+1,sizeof(char)); |
|||
c.password = calloc(15+1, sizeof(char)); |
|||
char digitCharacterFromUser, passwordCharacterFromUser; |
|||
int IDLengthCounter = 0, passwordLengthCounter = 0; |
|||
const int IDMaxLength = 16, passwordMaxLength = 16; |
|||
|
|||
printf("Enter ID:\n"); |
|||
while(((digitCharacterFromUser=getchar()) != '\n')&&IDLengthCounter<IDMaxLength){ |
|||
if(digitCharacterFromUser>='0'&&digitCharacterFromUser<='9'){ |
|||
*(c.ID+IDLengthCounter) = digitCharacterFromUser; |
|||
} |
|||
else{ |
|||
printf("Character entered is not a digit. Aborting.\n"); |
|||
exit(-1); |
|||
} |
|||
++IDLengthCounter; |
|||
} |
|||
*(c.ID+IDLengthCounter) = '\0'; |
|||
|
|||
if(IDLengthCounter>=IDMaxLength){ |
|||
printf("ID entered is too long. Aborting.\n"); |
|||
exit(-1); |
|||
} |
|||
|
|||
printf("Enter password:\n"); |
|||
while((passwordCharacterFromUser=getchar())!='\n'&&passwordLengthCounter<passwordMaxLength){ |
|||
*(c.password+passwordLengthCounter) = passwordCharacterFromUser; |
|||
++passwordLengthCounter; |
|||
} |
|||
*(c.password+passwordLengthCounter) = '\0'; |
|||
|
|||
if(passwordLengthCounter>=passwordMaxLength){ |
|||
printf("Password entered is too long. Aborting.\n"); |
|||
exit(-1); |
|||
} |
|||
customer_t *ptr = &c; |
|||
bool loginSuccessful = loginCustomer(ptr); |
|||
if(loginSuccessful ) { |
|||
printf("Welcome to the menu!\n"); |
|||
//call menu() |
|||
}else if(!loginSuccessful && attempts < MAX_LOGIN_ATTEMPTS){ |
|||
printf("You have %d attempts left.\n", MAX_LOGIN_ATTEMPTS - attempts); |
|||
collectCustomerDataForLogin(++attempts); |
|||
}else{ |
|||
printf("Maximum number of attempts reached. Program terminates.\n"); |
|||
exit(-1); |
|||
//call error() |
|||
} |
|||
|
|||
} |
|||
|
|||
bool loginCustomer(customer_t *c) |
|||
{ |
|||
bool foundCustomerEntryInFile = false; |
|||
char *searchForThisString = generateCheckString(c->ID,c->password); |
|||
char *lineFromCustomerFile = calloc(40,sizeof(char)); |
|||
FILE *readCustomerFile = fopen("CustomerData.txt", "r"); |
|||
if(readCustomerFile==NULL){ |
|||
printf("Could not find file. Aborting.\n"); |
|||
exit(-1); |
|||
//call error() |
|||
} |
|||
while((fscanf(readCustomerFile,"%s",lineFromCustomerFile)!=EOF)){ |
|||
if(strcmp(searchForThisString,lineFromCustomerFile)==0){ |
|||
foundCustomerEntryInFile = true; |
|||
break; |
|||
} |
|||
} |
|||
|
|||
if(checkLogin(foundCustomerEntryInFile)){ |
|||
printf("Login successful.\n"); |
|||
return foundCustomerEntryInFile; |
|||
}else{ |
|||
printf("Login not successful.\n"); |
|||
} |
|||
fclose(readCustomerFile); |
|||
return foundCustomerEntryInFile; |
|||
} |
|||
|
|||
char *generateCheckString(char *ID, char *password){ |
|||
int checkStringLength = strlen(ID) + 1 + strlen(password) + 1; |
|||
char *checkString = calloc(checkStringLength, sizeof(char)); |
|||
checkString = strcat(ID,"="); |
|||
checkString = strcat(checkString,password); |
|||
*(checkString+checkStringLength) = '\0'; |
|||
return checkString; |
|||
} |
@ -0,0 +1,10 @@ |
|||
#include <stdio.h> |
|||
#include <stdlib.h> |
|||
#include <stdbool.h> |
|||
#include <string.h> |
|||
#include "CustomerProperties.h" |
|||
#define MAX_LOGIN_ATTEMPTS 3 |
|||
char *generateCheckString(char *, char*); |
|||
bool checkLogin(bool); |
|||
void collectCustomerDataForLogin(int); |
|||
bool loginCustomer(customer_t *); |
@ -1,7 +0,0 @@ |
|||
#include <stdio.h> |
|||
|
|||
int main() |
|||
{ |
|||
|
|||
return 0; |
|||
} |
@ -1,9 +0,0 @@ |
|||
# Bankmanagement-System |
|||
|
|||
- Can Hacioglu, Fdlt3817 |
|||
- Atharva Kishor Naik, fdai7514 |
|||
- Julius Philipp Engel, fdai7057 |
|||
- Shivam Chaudhary, fdlt3781 |
|||
- Mohamed Yahya Dahi, fdai6618 |
|||
- Haytham Daoula, fdai7207 |
|||
|
@ -0,0 +1,3 @@ |
|||
--- |
|||
"/home/julius/Documents/Studium/Informatik/1. Semester/ProgMeth/Bankmanagement/bankmanagement-system/src/LoginCustomer.c": |
|||
- TEST |
@ -0,0 +1,242 @@ |
|||
--- |
|||
:project: |
|||
:use_exceptions: false |
|||
:use_mocks: true |
|||
:compile_threads: 1 |
|||
:test_threads: 1 |
|||
:use_test_preprocessor: true |
|||
:use_preprocessor_directives: false |
|||
:use_deep_dependencies: false |
|||
:generate_deep_dependencies: true |
|||
:auto_link_deep_dependencies: false |
|||
:test_file_prefix: test_ |
|||
:options_paths: [] |
|||
:release_build: false |
|||
:use_auxiliary_dependencies: true |
|||
:build_root: build |
|||
:which_ceedling: gem |
|||
:ceedling_version: 0.31.1 |
|||
:default_tasks: |
|||
- test:all |
|||
:release_build: |
|||
:use_assembly: false |
|||
:artifacts: [] |
|||
:paths: |
|||
:test: |
|||
- "+:test/**" |
|||
- "-:test/support" |
|||
:source: |
|||
- "/home/julius/Documents/Studium/Informatik/1. Semester/ProgMeth/Bankmanagement/bankmanagement-system/src/**" |
|||
:support: |
|||
- test/support |
|||
:include: [] |
|||
:libraries: [] |
|||
:test_toolchain_include: [] |
|||
:release_toolchain_include: [] |
|||
:files: |
|||
:test: [] |
|||
:source: [] |
|||
:assembly: [] |
|||
:support: [] |
|||
:include: [] |
|||
:environment: |
|||
- :rake_columns: '120' |
|||
:defines: |
|||
:test: |
|||
- &1 [] |
|||
- TEST |
|||
:test_preprocess: |
|||
- *1 |
|||
- TEST |
|||
:release: [] |
|||
:release_preprocess: [] |
|||
:use_test_definition: false |
|||
:common: [] |
|||
:libraries: |
|||
:flag: "-l${1}" |
|||
:path_flag: "-L ${1}" |
|||
:test: [] |
|||
:test_preprocess: [] |
|||
:release: [] |
|||
:release_preprocess: [] |
|||
:placement: :end |
|||
:system: [] |
|||
:flags: {} |
|||
:extension: |
|||
:header: ".h" |
|||
:source: ".c" |
|||
:assembly: ".s" |
|||
:object: ".o" |
|||
:libraries: |
|||
- ".a" |
|||
- ".so" |
|||
:executable: ".out" |
|||
:map: ".map" |
|||
:list: ".lst" |
|||
:testpass: ".pass" |
|||
:testfail: ".fail" |
|||
:dependencies: ".d" |
|||
:unity: |
|||
:vendor_path: "/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor" |
|||
:defines: [] |
|||
:cmock: |
|||
:vendor_path: "/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor" |
|||
:defines: [] |
|||
:includes: [] |
|||
:mock_prefix: mock_ |
|||
:when_no_prototypes: :warn |
|||
:enforce_strict_ordering: true |
|||
:plugins: |
|||
- :ignore |
|||
- :callback |
|||
:treat_as: |
|||
uint8: HEX8 |
|||
uint16: HEX16 |
|||
uint32: UINT32 |
|||
int8: INT8 |
|||
bool: UINT8 |
|||
:mock_path: build/test/mocks |
|||
:verbosity: 3 |
|||
:unity_helper: false |
|||
:cexception: |
|||
:vendor_path: "/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor" |
|||
:defines: [] |
|||
:test_runner: |
|||
:includes: [] |
|||
:file_suffix: _runner |
|||
:tools: |
|||
:test_compiler: |
|||
:executable: gcc |
|||
:name: default_test_compiler |
|||
:stderr_redirect: :none |
|||
:background_exec: :none |
|||
:optional: false |
|||
:arguments: |
|||
- '' |
|||
- '' |
|||
- -I"$": COLLECTION_PATHS_TEST_SUPPORT_SOURCE_INCLUDE_VENDOR |
|||
- -I"$": COLLECTION_PATHS_TEST_TOOLCHAIN_INCLUDE |
|||
- "-D$": COLLECTION_DEFINES_TEST_AND_VENDOR |
|||
- "-DGNU_COMPILER" |
|||
- "-g" |
|||
- '' |
|||
- -c "${1}" |
|||
- -o "${2}" |
|||
- "-MMD" |
|||
- -MF "${4}" |
|||
:test_fixture: |
|||
:executable: "${1}" |
|||
:name: default_test_fixture |
|||
:stderr_redirect: :auto |
|||
:background_exec: :none |
|||
:optional: false |
|||
:arguments: [] |
|||
:test_linker: |
|||
:executable: gcc |
|||
:name: default_test_linker |
|||
:stderr_redirect: :none |
|||
:background_exec: :none |
|||
:optional: false |
|||
:arguments: |
|||
- '' |
|||
- '' |
|||
- '' |
|||
- '"${1}"' |
|||
- "${5}" |
|||
- -o "${2}" |
|||
- '' |
|||
- "${4}" |
|||
- '' |
|||
:test_file_preprocessor: |
|||
:executable: gcc |
|||
:name: default_test_file_preprocessor |
|||
:stderr_redirect: :none |
|||
:background_exec: :none |
|||
:optional: false |
|||
:arguments: |
|||
- '' |
|||
- '' |
|||
- "-E" |
|||
- -I"$": COLLECTION_PATHS_TEST_SUPPORT_SOURCE_INCLUDE_VENDOR |
|||
- -I"$": COLLECTION_PATHS_TEST_TOOLCHAIN_INCLUDE |
|||
- "-D$": COLLECTION_DEFINES_TEST_AND_VENDOR |
|||
- "-D$": DEFINES_TEST_PREPROCESS |
|||
- "-DGNU_COMPILER" |
|||
- '"${1}"' |
|||
- -o "${2}" |
|||
:test_file_preprocessor_directives: |
|||
:executable: gcc |
|||
:name: default_test_file_preprocessor_directives |
|||
:stderr_redirect: :none |
|||
:background_exec: :none |
|||
:optional: false |
|||
:arguments: |
|||
- "-E" |
|||
- -I"$": COLLECTION_PATHS_TEST_SUPPORT_SOURCE_INCLUDE_VENDOR |
|||
- -I"$": COLLECTION_PATHS_TEST_TOOLCHAIN_INCLUDE |
|||
- "-D$": COLLECTION_DEFINES_TEST_AND_VENDOR |
|||
- "-D$": DEFINES_TEST_PREPROCESS |
|||
- "-DGNU_COMPILER" |
|||
- "-fdirectives-only" |
|||
- '"${1}"' |
|||
- -o "${2}" |
|||
:test_includes_preprocessor: |
|||
:executable: gcc |
|||
:name: default_test_includes_preprocessor |
|||
:stderr_redirect: :none |
|||
:background_exec: :none |
|||
:optional: false |
|||
:arguments: |
|||
- '' |
|||
- '' |
|||
- "-E" |
|||
- "-MM" |
|||
- "-MG" |
|||
- -I"$": COLLECTION_PATHS_TEST_SUPPORT_SOURCE_INCLUDE_VENDOR |
|||
- -I"$": COLLECTION_PATHS_TEST_TOOLCHAIN_INCLUDE |
|||
- "-D$": COLLECTION_DEFINES_TEST_AND_VENDOR |
|||
- "-D$": DEFINES_TEST_PREPROCESS |
|||
- "-DGNU_COMPILER" |
|||
- '"${1}"' |
|||
:test_compiler: |
|||
:arguments: [] |
|||
:test_linker: |
|||
:arguments: [] |
|||
:test_fixture: |
|||
:arguments: [] |
|||
:link_objects: [] |
|||
:test_includes_preprocessor: |
|||
:arguments: [] |
|||
:test_file_preprocessor: |
|||
:arguments: [] |
|||
:test_file_preprocessor_directives: |
|||
:arguments: [] |
|||
:test_dependencies_generator: |
|||
:arguments: [] |
|||
:release_compiler: |
|||
:arguments: [] |
|||
:release_linker: |
|||
:arguments: [] |
|||
:release_assembler: |
|||
:arguments: [] |
|||
:release_dependencies_generator: |
|||
:arguments: [] |
|||
:plugins: |
|||
:load_paths: |
|||
- "/var/lib/gems/2.7.0/gems/ceedling-0.31.1/lib/../plugins" |
|||
:enabled: |
|||
- stdout_pretty_tests_report |
|||
- module_generator |
|||
:display_raw_test_results: false |
|||
:stdout_pretty_tests_report_path: "/var/lib/gems/2.7.0/gems/ceedling-0.31.1/lib/../plugins/stdout_pretty_tests_report" |
|||
:module_generator_path: "/var/lib/gems/2.7.0/gems/ceedling-0.31.1/lib/../plugins/module_generator" |
|||
:gcov: |
|||
:reports: |
|||
- HtmlDetailed |
|||
:gcovr: |
|||
:html_medium_threshold: 75 |
|||
:html_high_threshold: 90 |
|||
:module_generator: |
|||
:project_root: "./" |
|||
:source_root: src/ |
|||
:test_root: test/ |
@ -0,0 +1,87 @@ |
|||
#include "Semester/ProgMeth/Bankmanagement/bankmanagement-system/src/LoginCustomer.h" |
|||
#include "/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h" |
|||
void setUp(){}; |
|||
|
|||
void tearDown(){}; |
|||
|
|||
void test_checkLogin() |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
_Bool |
|||
|
|||
expected_test_values_compute_to_true[] = {4==4, |
|||
|
|||
1 |
|||
|
|||
== |
|||
|
|||
1 |
|||
|
|||
, 1==1, |
|||
|
|||
0 |
|||
|
|||
== |
|||
|
|||
0 |
|||
|
|||
, 'z'=='z', '='=='=',0x1A==0x1A}; |
|||
|
|||
int length_1 = sizeof(expected_test_values_compute_to_true)/sizeof( |
|||
|
|||
_Bool |
|||
|
|||
); |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
_Bool |
|||
|
|||
expected_test_values_compute_to_false[] = {4!=4, |
|||
|
|||
1 |
|||
|
|||
== |
|||
|
|||
0 |
|||
|
|||
,1==0, |
|||
|
|||
0 |
|||
|
|||
== |
|||
|
|||
1 |
|||
|
|||
,'z'=='x','!'==')',0x1A==0x2B}; |
|||
|
|||
int length_2 = sizeof(expected_test_values_compute_to_false)/sizeof( |
|||
|
|||
_Bool |
|||
|
|||
); |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<7;++i) { |
|||
|
|||
do {if ((checkLogin(expected_test_values_compute_to_true[i]))) {} else {UnityFail( ((" Expected TRUE Was FALSE")), (UNITY_UINT)((UNITY_UINT)(16)));}} while(0); |
|||
|
|||
} |
|||
|
|||
for(int i=0;i<7;++i){ |
|||
|
|||
do {if (!(checkLogin(expected_test_values_compute_to_false[i]))) {} else {UnityFail( ((" Expected FALSE Was TRUE")), (UNITY_UINT)((UNITY_UINT)(19)));}} while(0); |
|||
|
|||
} |
|||
|
|||
} |
@ -0,0 +1,3 @@ |
|||
build/test/out/c/LoginCustomer.o: \ |
|||
/home/julius/Documents/Studium/Informatik/1.\ Semester/ProgMeth/Bankmanagement/bankmanagement-system/src/LoginCustomer.c \ |
|||
/home/julius/Documents/Studium/Informatik/1.\ Semester/ProgMeth/Bankmanagement/bankmanagement-system/src/LoginCustomer.h |
@ -0,0 +1,6 @@ |
|||
build/test/out/c/cmock.o: \ |
|||
/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/cmock/src/cmock.c \ |
|||
/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/cmock/src/cmock.h \ |
|||
/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/cmock/src/cmock_internals.h \ |
|||
/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h \ |
|||
/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity_internals.h |
@ -0,0 +1,4 @@ |
|||
build/test/out/c/test_LoginCustomer.o: test/test_LoginCustomer.c \ |
|||
/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h \ |
|||
/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity_internals.h \ |
|||
/home/julius/Documents/Studium/Informatik/1.\ Semester/ProgMeth/Bankmanagement/bankmanagement-system/src/LoginCustomer.h |
@ -0,0 +1,4 @@ |
|||
build/test/out/c/test_LoginCustomer_runner.o: \ |
|||
build/test/runners/test_LoginCustomer_runner.c \ |
|||
/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h \ |
|||
/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity_internals.h |
@ -0,0 +1,4 @@ |
|||
build/test/out/c/unity.o: \ |
|||
/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.c \ |
|||
/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h \ |
|||
/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity_internals.h |
@ -0,0 +1,87 @@ |
|||
#include "Semester/ProgMeth/Bankmanagement/bankmanagement-system/src/LoginCustomer.h" |
|||
#include "/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h" |
|||
void setUp(){}; |
|||
|
|||
void tearDown(){}; |
|||
|
|||
void test_checkLogin() |
|||
|
|||
{ |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
_Bool |
|||
|
|||
expected_test_values_compute_to_true[] = {4==4, |
|||
|
|||
1 |
|||
|
|||
== |
|||
|
|||
1 |
|||
|
|||
, 1==1, |
|||
|
|||
0 |
|||
|
|||
== |
|||
|
|||
0 |
|||
|
|||
, 'z'=='z', '='=='=',0x1A==0x1A}; |
|||
|
|||
int length_1 = sizeof(expected_test_values_compute_to_true)/sizeof( |
|||
|
|||
_Bool |
|||
|
|||
); |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
_Bool |
|||
|
|||
expected_test_values_compute_to_false[] = {4!=4, |
|||
|
|||
1 |
|||
|
|||
== |
|||
|
|||
0 |
|||
|
|||
,1==0, |
|||
|
|||
0 |
|||
|
|||
== |
|||
|
|||
1 |
|||
|
|||
,'z'=='x','!'==')',0x1A==0x2B}; |
|||
|
|||
int length_2 = sizeof(expected_test_values_compute_to_false)/sizeof( |
|||
|
|||
_Bool |
|||
|
|||
); |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
for(int i=0;i<7;++i) { |
|||
|
|||
do {if ((checkLogin(expected_test_values_compute_to_true[i]))) {} else {UnityFail( ((" Expected TRUE Was FALSE")), (UNITY_UINT)((UNITY_UINT)(16)));}} while(0); |
|||
|
|||
} |
|||
|
|||
for(int i=0;i<7;++i){ |
|||
|
|||
do {if (!(checkLogin(expected_test_values_compute_to_false[i]))) {} else {UnityFail( ((" Expected FALSE Was TRUE")), (UNITY_UINT)((UNITY_UINT)(19)));}} while(0); |
|||
|
|||
} |
|||
|
|||
} |
@ -0,0 +1,3 @@ |
|||
--- |
|||
- "/var/lib/gems/2.7.0/gems/ceedling-0.31.1/vendor/unity/src/unity.h" |
|||
- Semester/ProgMeth/Bankmanagement/bankmanagement-system/src/LoginCustomer.h |
@ -0,0 +1,18 @@ |
|||
--- |
|||
:source: |
|||
:path: test |
|||
:file: test_LoginCustomer.c |
|||
:successes: |
|||
- :test: test_checkLogin |
|||
:line: 5 |
|||
:message: '' |
|||
:unity_test_time: 0 |
|||
:failures: [] |
|||
:ignores: [] |
|||
:counts: |
|||
:total: 1 |
|||
:passed: 1 |
|||
:failed: 0 |
|||
:ignored: 0 |
|||
:stdout: [] |
|||
:time: 0.001912861000164412 |
@ -0,0 +1,81 @@ |
|||
/* AUTOGENERATED FILE. DO NOT EDIT. */ |
|||
|
|||
/*=======Automagically Detected Files To Include=====*/ |
|||
#include "unity.h" |
|||
|
|||
int GlobalExpectCount; |
|||
int GlobalVerifyOrder; |
|||
char* GlobalOrderError; |
|||
|
|||
/*=======External Functions This Runner Calls=====*/ |
|||
extern void setUp(void); |
|||
extern void tearDown(void); |
|||
extern void test_checkLogin(); |
|||
|
|||
|
|||
/*=======Mock Management=====*/ |
|||
static void CMock_Init(void) |
|||
{ |
|||
GlobalExpectCount = 0; |
|||
GlobalVerifyOrder = 0; |
|||
GlobalOrderError = NULL; |
|||
} |
|||
static void CMock_Verify(void) |
|||
{ |
|||
} |
|||
static void CMock_Destroy(void) |
|||
{ |
|||
} |
|||
|
|||
/*=======Test Reset Options=====*/ |
|||
void resetTest(void); |
|||
void resetTest(void) |
|||
{ |
|||
tearDown(); |
|||
CMock_Verify(); |
|||
CMock_Destroy(); |
|||
CMock_Init(); |
|||
setUp(); |
|||
} |
|||
void verifyTest(void); |
|||
void verifyTest(void) |
|||
{ |
|||
CMock_Verify(); |
|||
} |
|||
|
|||
/*=======Test Runner Used To Run Each Test=====*/ |
|||
static void run_test(UnityTestFunction func, const char* name, UNITY_LINE_TYPE line_num) |
|||
{ |
|||
Unity.CurrentTestName = name; |
|||
Unity.CurrentTestLineNumber = line_num; |
|||
#ifdef UNITY_USE_COMMAND_LINE_ARGS |
|||
if (!UnityTestMatches()) |
|||
return; |
|||
#endif |
|||
Unity.NumberOfTests++; |
|||
UNITY_CLR_DETAILS(); |
|||
UNITY_EXEC_TIME_START(); |
|||
CMock_Init(); |
|||
if (TEST_PROTECT()) |
|||
{ |
|||
setUp(); |
|||
func(); |
|||
} |
|||
if (TEST_PROTECT()) |
|||
{ |
|||
tearDown(); |
|||
CMock_Verify(); |
|||
} |
|||
CMock_Destroy(); |
|||
UNITY_EXEC_TIME_STOP(); |
|||
UnityConcludeTest(); |
|||
} |
|||
|
|||
/*=======MAIN=====*/ |
|||
int main(void) |
|||
{ |
|||
UnityBegin("test_LoginCustomer.c"); |
|||
run_test(test_checkLogin, "test_checkLogin", 5); |
|||
|
|||
return UnityEnd(); |
|||
} |
@ -0,0 +1,101 @@ |
|||
--- |
|||
|
|||
# Notes: |
|||
# Sample project C code is not presently written to produce a release artifact. |
|||
# As such, release build options are disabled. |
|||
# This sample, therefore, only demonstrates running a collection of unit tests. |
|||
|
|||
:project: |
|||
:use_exceptions: FALSE |
|||
:use_test_preprocessor: TRUE |
|||
:use_auxiliary_dependencies: TRUE |
|||
:build_root: build |
|||
# :release_build: TRUE |
|||
:test_file_prefix: test_ |
|||
:which_ceedling: gem |
|||
:ceedling_version: 0.31.1 |
|||
:default_tasks: |
|||
- test:all |
|||
|
|||
#:test_build: |
|||
# :use_assembly: TRUE |
|||
|
|||
#:release_build: |
|||
# :output: MyApp.out |
|||
# :use_assembly: FALSE |
|||
|
|||
:environment: |
|||
|
|||
:extension: |
|||
:executable: .out |
|||
|
|||
:paths: |
|||
:test: |
|||
- +:test/** |
|||
- -:test/support |
|||
:source: |
|||
- /home/julius/Documents/Studium/Informatik/1. Semester/ProgMeth/Bankmanagement/bankmanagement-system/src/** |
|||
:support: |
|||
- test/support |
|||
:libraries: [] |
|||
|
|||
:defines: |
|||
# in order to add common defines: |
|||
# 1) remove the trailing [] from the :common: section |
|||
# 2) add entries to the :common: section (e.g. :test: has TEST defined) |
|||
:common: &common_defines [] |
|||
:test: |
|||
- *common_defines |
|||
- TEST |
|||
:test_preprocess: |
|||
- *common_defines |
|||
- TEST |
|||
|
|||
:cmock: |
|||
:mock_prefix: mock_ |
|||
:when_no_prototypes: :warn |
|||
:enforce_strict_ordering: TRUE |
|||
:plugins: |
|||
- :ignore |
|||
- :callback |
|||
:treat_as: |
|||
uint8: HEX8 |
|||
uint16: HEX16 |
|||
uint32: UINT32 |
|||
int8: INT8 |
|||
bool: UINT8 |
|||
|
|||
# Add -gcov to the plugins list to make sure of the gcov plugin |
|||
# You will need to have gcov and gcovr both installed to make it work. |
|||
# For more information on these options, see docs in plugins/gcov |
|||
:gcov: |
|||
:reports: |
|||
- HtmlDetailed |
|||
:gcovr: |
|||
:html_medium_threshold: 75 |
|||
:html_high_threshold: 90 |
|||
|
|||
#:tools: |
|||
# Ceedling defaults to using gcc for compiling, linking, etc. |
|||
# As [:tools] is blank, gcc will be used (so long as it's in your system path) |
|||
# See documentation to configure a given toolchain for use |
|||
|
|||
# LIBRARIES |
|||
# These libraries are automatically injected into the build process. Those specified as |
|||
# common will be used in all types of builds. Otherwise, libraries can be injected in just |
|||
# tests or releases. These options are MERGED with the options in supplemental yaml files. |
|||
:libraries: |
|||
:placement: :end |
|||
:flag: "-l${1}" |
|||
:path_flag: "-L ${1}" |
|||
:system: [] # for example, you might list 'm' to grab the math library |
|||
:test: [] |
|||
:release: [] |
|||
|
|||
:plugins: |
|||
:load_paths: |
|||
- "#{Ceedling.load_path}" |
|||
:enabled: |
|||
- stdout_pretty_tests_report |
|||
- module_generator |
|||
... |
@ -0,0 +1,21 @@ |
|||
#include <unity.h> |
|||
#include "LoginCustomer.h" |
|||
void setUp(){}; |
|||
void tearDown(){}; |
|||
void test_checkLogin() |
|||
{ |
|||
/*arrange*/ |
|||
bool expected_test_values_compute_to_true[] = {4==4,true==true, 1==1, false==false, 'z'=='z', '='=='=',0x1A==0x1A}; |
|||
int length_1 = sizeof(expected_test_values_compute_to_true)/sizeof(bool); |
|||
|
|||
bool expected_test_values_compute_to_false[] = {4!=4,true==false,1==0,false==true,'z'=='x','!'==')',0x1A==0x2B}; |
|||
int length_2 = sizeof(expected_test_values_compute_to_false)/sizeof(bool); |
|||
|
|||
/*act and assertions*/ |
|||
for(int i=0;i<7;++i) { |
|||
TEST_ASSERT_TRUE(checkLogin(expected_test_values_compute_to_true[i])); |
|||
} |
|||
for(int i=0;i<7;++i){ |
|||
TEST_ASSERT_FALSE(checkLogin(expected_test_values_compute_to_false[i])); |
|||
} |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue