mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
[C++ Options] Begin Implementation for basic and validated options.
This commit is contained in:
parent
b495da4e29
commit
c0ba3e2706
103
libgnucash/app-utils/gnc-option.cpp
Normal file
103
libgnucash/app-utils/gnc-option.cpp
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
/********************************************************************\
|
||||||
|
* gnc-option.cpp -- Application options system *
|
||||||
|
* Copyright (C) 2019 John Ralls <jralls@ceridwen.us> *
|
||||||
|
* *
|
||||||
|
* This program is free software; you can redistribute it and/or *
|
||||||
|
* modify it under the terms of the GNU General Public License as *
|
||||||
|
* published by the Free Software Foundation; either version 2 of *
|
||||||
|
* the License, or (at your option) any later version. *
|
||||||
|
* *
|
||||||
|
* This program is distributed in the hope that it will be useful, *
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
|
* GNU General Public License for more details. *
|
||||||
|
* *
|
||||||
|
* You should have received a copy of the GNU General Public License*
|
||||||
|
* along with this program; if not, contact: *
|
||||||
|
* *
|
||||||
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
||||||
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
||||||
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
||||||
|
* *
|
||||||
|
\********************************************************************/
|
||||||
|
|
||||||
|
//#include "options.h"
|
||||||
|
#include "gnc-option.hpp"
|
||||||
|
|
||||||
|
template<> SCM
|
||||||
|
scm_from_value<std::string>(std::string value)
|
||||||
|
{
|
||||||
|
return scm_from_utf8_string(value.c_str());
|
||||||
|
}
|
||||||
|
|
||||||
|
template<> SCM
|
||||||
|
scm_from_value<bool>(bool value)
|
||||||
|
{
|
||||||
|
return value ? SCM_BOOL_T : SCM_BOOL_F;
|
||||||
|
}
|
||||||
|
|
||||||
|
template<> SCM
|
||||||
|
scm_from_value<int64_t>(int64_t value)
|
||||||
|
{
|
||||||
|
return scm_from_int64(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
template<> SCM
|
||||||
|
scm_from_value<QofInstance*>(QofInstance* value)
|
||||||
|
{
|
||||||
|
auto guid = guid_to_string(qof_instance_get_guid(value));
|
||||||
|
auto scm_guid = scm_from_utf8_string(guid);
|
||||||
|
g_free(guid);
|
||||||
|
return scm_guid;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::shared_ptr<GncOptionValue<std::string>>
|
||||||
|
gnc_make_string_option(const char* section, const char* name,
|
||||||
|
const char* key, const char* doc_string,
|
||||||
|
std::string value)
|
||||||
|
{
|
||||||
|
return std::make_shared<GncOptionValue<std::string>>(
|
||||||
|
section, name, key, doc_string, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::shared_ptr<GncOptionValue<std::string>>
|
||||||
|
gnc_make_text_option(const char* section, const char* name,
|
||||||
|
const char* key, const char* doc_string,
|
||||||
|
std::string value)
|
||||||
|
{
|
||||||
|
return gnc_make_string_option(section, name, key, doc_string, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::shared_ptr<GncOptionValue<QofInstance*>>
|
||||||
|
gnc_make_budget_option(const char* section, const char* name,
|
||||||
|
const char* key, const char* doc_string,
|
||||||
|
GncBudget *value)
|
||||||
|
{
|
||||||
|
return std::make_shared<GncOptionValue<QofInstance*>>(
|
||||||
|
section, name, key, doc_string, QOF_INSTANCE(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
std::shared_ptr<GncOptionValue<QofInstance*>>
|
||||||
|
gnc_make_commodity_option(const char* section, const char* name,
|
||||||
|
const char* key, const char* doc_string,
|
||||||
|
gnc_commodity *value)
|
||||||
|
{
|
||||||
|
return std::make_shared<GncOptionValue<QofInstance*>>(
|
||||||
|
section, name, key, doc_string, QOF_INSTANCE(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
std::shared_ptr<GncOptionValidatedValue<QofInstance*>>
|
||||||
|
gnc_make_currency_option(const char* section, const char* name,
|
||||||
|
const char* key, const char* doc_string,
|
||||||
|
gnc_commodity *value)
|
||||||
|
{
|
||||||
|
return std::make_shared<GncOptionValidatedValue<QofInstance*>>(
|
||||||
|
section, name, key, doc_string, QOF_INSTANCE(value),
|
||||||
|
[](QofInstance* new_value) -> bool
|
||||||
|
{
|
||||||
|
return GNC_IS_COMMODITY (new_value) &&
|
||||||
|
gnc_commodity_is_currency(GNC_COMMODITY(new_value));
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
215
libgnucash/app-utils/gnc-option.hpp
Normal file
215
libgnucash/app-utils/gnc-option.hpp
Normal file
@ -0,0 +1,215 @@
|
|||||||
|
/********************************************************************\
|
||||||
|
* gnc-option.hpp -- Application options system *
|
||||||
|
* Copyright (C) 2019 John Ralls <jralls@ceridwen.us> *
|
||||||
|
* *
|
||||||
|
* This program is free software; you can redistribute it and/or *
|
||||||
|
* modify it under the terms of the GNU General Public License as *
|
||||||
|
* published by the Free Software Foundation; either version 2 of *
|
||||||
|
* the License, or (at your option) any later version. *
|
||||||
|
* *
|
||||||
|
* This program is distributed in the hope that it will be useful, *
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
|
* GNU General Public License for more details. *
|
||||||
|
* *
|
||||||
|
* You should have received a copy of the GNU General Public License*
|
||||||
|
* along with this program; if not, contact: *
|
||||||
|
* *
|
||||||
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
||||||
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
||||||
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
||||||
|
* *
|
||||||
|
\********************************************************************/
|
||||||
|
|
||||||
|
#ifndef GNC_OPTION_HPP_
|
||||||
|
#define GNC_OPTION_HPP_
|
||||||
|
|
||||||
|
extern "C"
|
||||||
|
{
|
||||||
|
#include <config.h>
|
||||||
|
#include <qof.h>
|
||||||
|
#include <gnc-budget.h>
|
||||||
|
#include <gnc-commodity.h>
|
||||||
|
}
|
||||||
|
#include <libguile.h>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Unused base class to document the structure of the current Scheme option
|
||||||
|
* vector, re-expressed in C++. The comment-numbers on the right indicate which
|
||||||
|
* item in the Scheme vector each item implements.
|
||||||
|
*
|
||||||
|
* Not everything here needs to be implemented, nor will it necessarily be
|
||||||
|
* implemented the same way. For example, part of the purpose of this redesign
|
||||||
|
* is to convert from saving options as strings of Scheme code to some form of
|
||||||
|
* key-value pair in the book options, so generate_restore_form() will likely be
|
||||||
|
* supplanted with save_to_book().
|
||||||
|
|
||||||
|
template <typename ValueType>
|
||||||
|
class GncOptionBase
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
virtual ~GncOption = default;
|
||||||
|
virtual ValueType get_value() const = 0; //5
|
||||||
|
virtual ValueType get_default_value() = 0;
|
||||||
|
virtual SCM get_SCM_value() = 0;
|
||||||
|
virtual SCM get_SCM_default_value() const = 0; //7
|
||||||
|
virtual void set_value(ValueType) = 0; //6
|
||||||
|
// generate_restore_form outputs a Scheme expression (a "form") that finds an
|
||||||
|
// option and sets it to the current value. e.g.:
|
||||||
|
//(let ((option (gnc:lookup-option options
|
||||||
|
// "Display"
|
||||||
|
// "Amount")))
|
||||||
|
// ((lambda (option) (if option ((gnc:option-setter option) 'none))) option))
|
||||||
|
// it uses gnc:value->string to generate the "'none" (or whatever the option's
|
||||||
|
// value would be as input to the scheme interpreter).
|
||||||
|
|
||||||
|
virtual std::string generate_restore_form(); //8
|
||||||
|
virtual void save_to_book(QofBook*) const noexcept; //9
|
||||||
|
virtual void read_from_book(QofBook*); //10
|
||||||
|
virtual std::vector<std::string> get_option_strings(); //15
|
||||||
|
virtual set_changed_callback(std::function<void(void*)>); //14
|
||||||
|
protected:
|
||||||
|
const std::string m_section; //0
|
||||||
|
const std::string m_name; //1
|
||||||
|
const std::string m_sort_tag; //2
|
||||||
|
const std::type_info m_kvp_type; //3
|
||||||
|
const std::string m_doc_string; //4
|
||||||
|
std::function<void(void*)> m_changed_callback; //Part of the make-option closure
|
||||||
|
std::function<void(void*)>m_option_widget_changed_callback; //16
|
||||||
|
};
|
||||||
|
*/
|
||||||
|
|
||||||
|
struct OptionClassifier
|
||||||
|
{
|
||||||
|
const std::string m_section;
|
||||||
|
const std::string m_name;
|
||||||
|
const std::string m_sort_tag;
|
||||||
|
// const std::type_info m_kvp_type;
|
||||||
|
const std::string m_doc_string;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename ValueType>
|
||||||
|
SCM scm_from_value(ValueType);
|
||||||
|
|
||||||
|
/* This design pattern is called the Curiously Recursive Template Pattern, or
|
||||||
|
* CRTP. See https://en.wikipedia.org/wiki/Curiously_recurring_template_pattern
|
||||||
|
* for a detailed explanation.
|
||||||
|
*/
|
||||||
|
template <typename ValueType, class ValueClass>
|
||||||
|
class GncOption
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
ValueType get_value() const
|
||||||
|
{
|
||||||
|
return static_cast<ValueClass const&>(*this).get_value();
|
||||||
|
}
|
||||||
|
void set_value(ValueType value)
|
||||||
|
{
|
||||||
|
static_cast<ValueClass&>(*this).set_value(value);
|
||||||
|
}
|
||||||
|
ValueType get_default_value() const
|
||||||
|
{
|
||||||
|
return static_cast<ValueClass const&>(*this).get_default_value();
|
||||||
|
}
|
||||||
|
SCM get_scm_value()
|
||||||
|
{
|
||||||
|
ValueType value{static_cast<ValueClass const&>(*this).get_value()};
|
||||||
|
return scm_from_value<ValueType>(value);
|
||||||
|
}
|
||||||
|
SCM get_scm_default_value()
|
||||||
|
{
|
||||||
|
ValueType value{static_cast<ValueClass const&>(*this).get_default_value()};
|
||||||
|
return scm_from_value<ValueType>(value);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename ValueType>
|
||||||
|
class GncOptionValue :
|
||||||
|
public OptionClassifier,
|
||||||
|
public GncOption<ValueType, GncOptionValue<ValueType>>
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
GncOptionValue<ValueType>(const char* section, const char* name,
|
||||||
|
const char* key, const char* doc_string,
|
||||||
|
ValueType value) :
|
||||||
|
OptionClassifier{section, name, key, doc_string},
|
||||||
|
m_value{value}, m_default_value{value} {}
|
||||||
|
ValueType get_value() const { return m_value; }
|
||||||
|
ValueType get_default_value() const { return m_default_value; }
|
||||||
|
void set_value(ValueType new_value) { m_value = new_value; }
|
||||||
|
protected:
|
||||||
|
ValueType m_value;
|
||||||
|
ValueType m_default_value;
|
||||||
|
};
|
||||||
|
|
||||||
|
template <typename ValueType>
|
||||||
|
class GncOptionValidatedValue :
|
||||||
|
public OptionClassifier,
|
||||||
|
public GncOption<ValueType, GncOptionValidatedValue<ValueType>>
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
GncOptionValidatedValue<ValueType>(const char* section, const char* name,
|
||||||
|
const char* key, const char* doc_string,
|
||||||
|
ValueType value,
|
||||||
|
std::function<bool(ValueType)>validator) :
|
||||||
|
OptionClassifier{section, name, key, doc_string},
|
||||||
|
m_value{value}, m_default_value{value}, m_validator{validator}
|
||||||
|
{
|
||||||
|
if (!this->validate(value))
|
||||||
|
throw std::invalid_argument("Attempt to create GncValidatedOption with bad value.");
|
||||||
|
}
|
||||||
|
GncOptionValidatedValue<ValueType>(const char* section, const char* name,
|
||||||
|
const char* key, const char* doc_string,
|
||||||
|
ValueType value,
|
||||||
|
std::function<bool(ValueType)>validator,
|
||||||
|
ValueType val_data) :
|
||||||
|
OptionClassifier{section, name, key, doc_string}, m_value{value},
|
||||||
|
m_default_value{value}, m_validator{validator}, m_validation_data{val_data}
|
||||||
|
{
|
||||||
|
if (!this->validate(value))
|
||||||
|
throw std::invalid_argument("Attempt to create GncValidatedOption with bad value.");
|
||||||
|
}
|
||||||
|
ValueType get_value() const { return m_value; }
|
||||||
|
ValueType get_default_value() const { return m_default_value; }
|
||||||
|
bool validate(ValueType value) { return m_validator(value); }
|
||||||
|
void set_value(ValueType value)
|
||||||
|
{
|
||||||
|
if (this->validate(value))
|
||||||
|
m_value = value;
|
||||||
|
else
|
||||||
|
throw std::invalid_argument("Validation failed, value not set.");
|
||||||
|
}
|
||||||
|
private:
|
||||||
|
ValueType m_value;
|
||||||
|
ValueType m_default_value;
|
||||||
|
std::function<bool(ValueType)> m_validator; //11
|
||||||
|
ValueType m_validation_data;
|
||||||
|
};
|
||||||
|
|
||||||
|
std::shared_ptr<GncOptionValue<std::string>>
|
||||||
|
gnc_make_string_option(const char* section, const char* name,
|
||||||
|
const char* key, const char* doc_string,
|
||||||
|
std::string value);
|
||||||
|
|
||||||
|
std::shared_ptr<GncOptionValue<std::string>>
|
||||||
|
gnc_make_text_option(const char* section, const char* name,
|
||||||
|
const char* key, const char* doc_string,
|
||||||
|
std::string value);
|
||||||
|
|
||||||
|
std::shared_ptr<GncOptionValue<QofInstance*>>
|
||||||
|
gnc_make_budget_option(const char* section, const char* name,
|
||||||
|
const char* key, const char* doc_string,
|
||||||
|
GncBudget* value);
|
||||||
|
|
||||||
|
std::shared_ptr<GncOptionValue<QofInstance*>>
|
||||||
|
gnc_make_commodity_option(const char* section, const char* name,
|
||||||
|
const char* key, const char* doc_string,
|
||||||
|
gnc_commodity* value);
|
||||||
|
|
||||||
|
std::shared_ptr<GncOptionValidatedValue<QofInstance*>>
|
||||||
|
gnc_make_currency_option(const char* section, const char* name,
|
||||||
|
const char* key, const char* doc_string,
|
||||||
|
gnc_commodity* value);
|
||||||
|
|
||||||
|
#endif //GNC_OPTION_HPP_
|
@ -1,3 +1,4 @@
|
|||||||
|
set(MODULEPATH ${CMAKE_SOURCE_DIR}/libgnucash/app-utils)
|
||||||
|
|
||||||
set(APP_UTILS_TEST_INCLUDE_DIRS
|
set(APP_UTILS_TEST_INCLUDE_DIRS
|
||||||
${CMAKE_BINARY_DIR}/common # for config.h
|
${CMAKE_BINARY_DIR}/common # for config.h
|
||||||
@ -28,6 +29,25 @@ gnc_add_test_with_guile(test-scm-query-string test-scm-query-string.cpp
|
|||||||
)
|
)
|
||||||
add_app_utils_test(test-sx test-sx.cpp)
|
add_app_utils_test(test-sx test-sx.cpp)
|
||||||
|
|
||||||
|
set(gtest_gnc_option_SOURCES
|
||||||
|
${MODULEPATH}/gnc-option.cpp
|
||||||
|
gtest-gnc-option.cpp)
|
||||||
|
|
||||||
|
set(gtest_gnc_option_INCLUDES
|
||||||
|
${MODULEPATH}
|
||||||
|
${CMAKE_SOURCE_DIR}/libgnucash/engine
|
||||||
|
${CMAKE_BINARY_DIR}/common # for config.h
|
||||||
|
${GLIB2_INCLUDE_DIRS}
|
||||||
|
${GUILE_INCLUDE_DIRS})
|
||||||
|
|
||||||
|
set(gtest_gnc_option_LIBS
|
||||||
|
gncmod-engine
|
||||||
|
${GLIB2_LDFLAGS}
|
||||||
|
${GUILE_LDFLAGS}
|
||||||
|
gtest)
|
||||||
|
|
||||||
|
gnc_add_test(test-gnc-option "${gtest_gnc_option_SOURCES}" gtest_gnc_option_INCLUDES gtest_gnc_option_LIBS)
|
||||||
|
|
||||||
set(GUILE_DEPENDS
|
set(GUILE_DEPENDS
|
||||||
scm-test-engine
|
scm-test-engine
|
||||||
scm-app-utils
|
scm-app-utils
|
||||||
|
174
libgnucash/app-utils/test/gtest-gnc-option.cpp
Normal file
174
libgnucash/app-utils/test/gtest-gnc-option.cpp
Normal file
@ -0,0 +1,174 @@
|
|||||||
|
/********************************************************************
|
||||||
|
* gtest-gnc-option.cpp -- unit tests for GncOption class. *
|
||||||
|
* Copyright (C) 2019 John Ralls <jralls@ceridwen.us> *
|
||||||
|
* *
|
||||||
|
* This program is free software; you can redistribute it and/or *
|
||||||
|
* modify it under the terms of the GNU General Public License as *
|
||||||
|
* published by the Free Software Foundation; either version 2 of *
|
||||||
|
* the License, or (at your option) any later version. *
|
||||||
|
* *
|
||||||
|
* This program is distributed in the hope that it will be useful, *
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||||||
|
* GNU General Public License for more details. *
|
||||||
|
* *
|
||||||
|
* You should have received a copy of the GNU General Public License*
|
||||||
|
* along with this program; if not, contact: *
|
||||||
|
* *
|
||||||
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
||||||
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
||||||
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
||||||
|
* *
|
||||||
|
*******************************************************************/
|
||||||
|
|
||||||
|
#include <gtest/gtest.h>
|
||||||
|
#include <gnc-option.hpp>
|
||||||
|
|
||||||
|
TEST(GncOption, test_string_ctor)
|
||||||
|
{
|
||||||
|
EXPECT_NO_THROW({
|
||||||
|
auto option = gnc_make_string_option("foo", "bar", "baz",
|
||||||
|
"Phony Option",
|
||||||
|
std::string{"waldo"});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(GncOption, test_text_ctor)
|
||||||
|
{
|
||||||
|
EXPECT_NO_THROW({
|
||||||
|
auto option = gnc_make_text_option("foo", "bar", "baz",
|
||||||
|
"Phony Option",
|
||||||
|
std::string{"waldo"});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(GncOption, test_string_default_value)
|
||||||
|
{
|
||||||
|
auto option = gnc_make_string_option("foo", "bar", "baz", "Phony Option",
|
||||||
|
std::string{"waldo"});
|
||||||
|
EXPECT_STREQ("waldo", option->get_default_value().c_str());
|
||||||
|
EXPECT_STREQ("waldo", option->get_value().c_str());
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(GncOption, test_string_value)
|
||||||
|
{
|
||||||
|
auto option = gnc_make_string_option("foo", "bar", "baz", "Phony Option",
|
||||||
|
std::string{"waldo"});
|
||||||
|
option->set_value("pepper");
|
||||||
|
EXPECT_STREQ("waldo", option->get_default_value().c_str());
|
||||||
|
EXPECT_NO_THROW({
|
||||||
|
EXPECT_STREQ("pepper", option->get_value().c_str());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(GncOption, test_string_scm_functions)
|
||||||
|
{
|
||||||
|
auto option = gnc_make_string_option("foo", "bar", "baz", "Phony Option",
|
||||||
|
std::string{"waldo"});
|
||||||
|
auto scm_value = option->get_scm_value();
|
||||||
|
auto str_value = scm_to_utf8_string(scm_value);
|
||||||
|
EXPECT_STREQ("waldo", str_value);
|
||||||
|
g_free(str_value);
|
||||||
|
scm_value = option->get_scm_default_value();
|
||||||
|
str_value = scm_to_utf8_string(scm_value);
|
||||||
|
EXPECT_STREQ("waldo", str_value);
|
||||||
|
g_free(str_value);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(GNCOption, test_budget_ctor)
|
||||||
|
{
|
||||||
|
auto book = qof_book_new();
|
||||||
|
auto budget = gnc_budget_new(book);
|
||||||
|
EXPECT_NO_THROW({
|
||||||
|
auto option = gnc_make_budget_option("foo", "bar", "baz",
|
||||||
|
"Phony Option", budget);
|
||||||
|
});
|
||||||
|
gnc_budget_destroy(budget);
|
||||||
|
qof_book_destroy(book);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(GNCOption, test_budget_scm_functions)
|
||||||
|
{
|
||||||
|
auto book = qof_book_new();
|
||||||
|
auto budget = gnc_budget_new(book);
|
||||||
|
auto option = gnc_make_budget_option("foo", "bar", "baz",
|
||||||
|
"Phony Option", budget);
|
||||||
|
auto scm_budget = option->get_scm_value();
|
||||||
|
auto str_value = scm_to_utf8_string(scm_budget);
|
||||||
|
auto guid = guid_to_string(qof_instance_get_guid(budget));
|
||||||
|
EXPECT_STREQ(guid, str_value);
|
||||||
|
g_free(guid);
|
||||||
|
gnc_budget_destroy(budget);
|
||||||
|
qof_book_destroy(book);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(GNCOption, test_commodity_ctor)
|
||||||
|
{
|
||||||
|
auto book = qof_book_new();
|
||||||
|
auto hpe = gnc_commodity_new(book, "Hewlett Packard Enterprise, Inc.",
|
||||||
|
"NYSE", "HPE", NULL, 1);
|
||||||
|
EXPECT_NO_THROW({
|
||||||
|
auto option = gnc_make_commodity_option("foo", "bar", "baz",
|
||||||
|
"Phony Option", hpe);
|
||||||
|
});
|
||||||
|
gnc_commodity_destroy(hpe);
|
||||||
|
qof_book_destroy(book);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(GNCOption, test_currency_ctor)
|
||||||
|
{
|
||||||
|
auto book = qof_book_new();
|
||||||
|
auto table = gnc_commodity_table_new();
|
||||||
|
qof_book_set_data(book, GNC_COMMODITY_TABLE, table);
|
||||||
|
auto hpe = gnc_commodity_new(book, "Hewlett Packard Enterprise, Inc.",
|
||||||
|
"NYSE", "HPE", NULL, 1);
|
||||||
|
EXPECT_THROW({
|
||||||
|
auto option = gnc_make_currency_option("foo", "bar", "baz",
|
||||||
|
"Phony Option", hpe);
|
||||||
|
}, std::invalid_argument);
|
||||||
|
gnc_commodity_destroy(hpe);
|
||||||
|
auto eur = gnc_commodity_new(book, "Euro", "ISO4217", "EUR", NULL, 100);
|
||||||
|
EXPECT_NO_THROW({
|
||||||
|
auto option = gnc_make_currency_option("foo", "bar", "baz",
|
||||||
|
"Phony Option", eur);
|
||||||
|
});
|
||||||
|
gnc_commodity_destroy(eur);
|
||||||
|
auto usd = gnc_commodity_new(book, "United States Dollar",
|
||||||
|
"CURRENCY", "USD", NULL, 100);
|
||||||
|
EXPECT_NO_THROW({
|
||||||
|
auto option = gnc_make_currency_option("foo", "bar", "baz",
|
||||||
|
"Phony Option", usd);
|
||||||
|
});
|
||||||
|
gnc_commodity_destroy(usd);
|
||||||
|
qof_book_set_data(book, GNC_COMMODITY_TABLE, nullptr);
|
||||||
|
gnc_commodity_table_destroy(table);
|
||||||
|
qof_book_destroy(book);
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(GNCOption, test_currency_setter)
|
||||||
|
{
|
||||||
|
auto book = qof_book_new();
|
||||||
|
auto table = gnc_commodity_table_new();
|
||||||
|
qof_book_set_data(book, GNC_COMMODITY_TABLE, table);
|
||||||
|
auto hpe = gnc_commodity_new(book, "Hewlett Packard Enterprise, Inc.",
|
||||||
|
"NYSE", "HPE", NULL, 1);
|
||||||
|
auto eur = gnc_commodity_new(book, "Euro", "ISO4217", "EUR", NULL, 100);
|
||||||
|
auto option = gnc_make_currency_option("foo", "bar", "baz",
|
||||||
|
"Phony Option", eur);
|
||||||
|
auto usd = gnc_commodity_new(book, "United States Dollar",
|
||||||
|
"CURRENCY", "USD", NULL, 100);
|
||||||
|
EXPECT_NO_THROW({
|
||||||
|
option->set_value(QOF_INSTANCE(usd));
|
||||||
|
});
|
||||||
|
EXPECT_PRED2(gnc_commodity_equal, usd, GNC_COMMODITY(option->get_value()));
|
||||||
|
EXPECT_THROW({
|
||||||
|
option->set_value(QOF_INSTANCE(hpe));
|
||||||
|
}, std::invalid_argument);
|
||||||
|
EXPECT_PRED2(gnc_commodity_equal, usd, GNC_COMMODITY(option->get_value()));
|
||||||
|
gnc_commodity_destroy(hpe);
|
||||||
|
gnc_commodity_destroy(usd);
|
||||||
|
gnc_commodity_destroy(eur);
|
||||||
|
qof_book_set_data(book, GNC_COMMODITY_TABLE, nullptr);
|
||||||
|
gnc_commodity_table_destroy(table);
|
||||||
|
qof_book_destroy(book);
|
||||||
|
}
|
@ -528,6 +528,8 @@ libgnucash/app-utils/gnc-exp-parser.c
|
|||||||
libgnucash/app-utils/gnc-gsettings.c
|
libgnucash/app-utils/gnc-gsettings.c
|
||||||
libgnucash/app-utils/gnc-helpers.c
|
libgnucash/app-utils/gnc-helpers.c
|
||||||
libgnucash/app-utils/gnc-help-utils.c
|
libgnucash/app-utils/gnc-help-utils.c
|
||||||
|
libgnucash/app-utils/gncmod-app-utils.c
|
||||||
|
libgnucash/app-utils/gnc-option.cpp
|
||||||
libgnucash/app-utils/gnc-prefs-utils.c
|
libgnucash/app-utils/gnc-prefs-utils.c
|
||||||
libgnucash/app-utils/gnc-state.c
|
libgnucash/app-utils/gnc-state.c
|
||||||
libgnucash/app-utils/gnc-sx-instance-model.c
|
libgnucash/app-utils/gnc-sx-instance-model.c
|
||||||
|
Loading…
Reference in New Issue
Block a user