mirror of
https://gitlab.com/klmp200/fish.git
synced 2024-11-14 21:03:21 +00:00
28 lines
738 B
C++
28 lines
738 B
C++
#include "gtest/gtest.h"
|
|
#include "../fish_shell/fish_types.h"
|
|
#include "../fish_shell/fish_settings.h"
|
|
|
|
TEST(free_settings_Test, freeSettings){
|
|
Settings *s1 = getSettings();
|
|
Settings *s2 = getSettings();
|
|
|
|
freeSettings(s1);
|
|
|
|
ASSERT_STRNE(s1->PS1, s2->PS1);
|
|
|
|
freeSettings(s2);
|
|
}
|
|
|
|
TEST(extract_variable_Test, extractVariable){
|
|
ASSERT_TRUE(extractVariable((char*) "P4T3", (char*) "PS1") == NULL);
|
|
ASSERT_STREQ(extractVariable((char*) "../fish_shell_tests/fishrc", (char*) "PS1"), "sli->");
|
|
ASSERT_TRUE(extractVariable((char*) "../fish_shell_tests/fishrc", (char*) "P1ZZ4") == NULL);
|
|
|
|
}
|
|
|
|
TEST(get_settings_Test, getSettings){
|
|
Settings* s = getSettings();
|
|
ASSERT_FALSE(s ==NULL);
|
|
ASSERT_FALSE(s->passwd == NULL);
|
|
freeSettings(s);
|
|
} |