Skip to content
Snippets Groups Projects
Commit 8d49201b authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rm unused string util

parent 5266343a
No related branches found
No related tags found
1 merge request!2619test file names match test names; rm unused string util
...@@ -24,34 +24,3 @@ QStringList GUI::Util::String::fromStdStrings(const std::vector<std::string>& co ...@@ -24,34 +24,3 @@ QStringList GUI::Util::String::fromStdStrings(const std::vector<std::string>& co
result.append(QString::fromStdString(str)); result.append(QString::fromStdString(str));
return result; return result;
} }
QString GUI::Util::String::suggestName(const QStringList& existingNames, const QString& name)
{
int newNumber = -1;
QRegularExpression regexp(R"(\((\d+)\))");
QString baseName = name;
{
QRegularExpressionMatch matched{regexp.match(baseName)};
if (matched.hasMatch()) {
newNumber = matched.captured(1).toInt();
baseName.replace(matched.captured(0), "");
baseName = baseName.trimmed();
}
}
for (const auto& n : existingNames) {
if (n == baseName)
newNumber = std::max(newNumber, 2);
else {
QRegularExpressionMatch matched{regexp.match(n)};
if (matched.hasMatch())
newNumber = std::max(newNumber, matched.captured(1).toInt() + 1);
}
}
if (newNumber == -1)
return baseName;
return QString("%1 (%2)").arg(baseName).arg(newNumber);
}
...@@ -20,15 +20,8 @@ ...@@ -20,15 +20,8 @@
namespace GUI::Util::String { namespace GUI::Util::String {
//! Returns a name suggestion based on the given name.
//!
//! Tries to add a reasonable numbering in brackets if necessary (e.g. "GISAS" -> "GISAS (2)")
QString suggestName(const QStringList& existingNames, const QString& name);
QStringList fromStdStrings(const std::vector<std::string>& container); QStringList fromStdStrings(const std::vector<std::string>& container);
QString readTextFile(const QString& fname);
} // namespace GUI::Util::String } // namespace GUI::Util::String
#endif // BORNAGAIN_GUI_MODEL_UTIL_STRING_H #endif // BORNAGAIN_GUI_MODEL_UTIL_STRING_H
#include "GUI/Model/Util/String.h"
#include "Tests/GTestWrapper/google_test.h"
#include <QStringList>
#include <QVector>
TEST(StringUtil, suggestName)
{
EXPECT_EQ(GUI::Util::String::suggestName({"A", "B", "C"}, "A"), "A (2)");
EXPECT_EQ(GUI::Util::String::suggestName({"A", "B", "C"}, "D"), "D");
EXPECT_EQ(GUI::Util::String::suggestName({"A (1)", "A (19)"}, "A"), "A (20)");
EXPECT_EQ(GUI::Util::String::suggestName({"A (x)"}, "A"), "A");
EXPECT_EQ(GUI::Util::String::suggestName({"A", "A (2)"}, "A (2)"), "A (3)");
EXPECT_EQ(GUI::Util::String::suggestName({"A", "A (X)"}, "A (X)"), "A (X) (2)");
EXPECT_EQ(GUI::Util::String::suggestName({"A", "A (3)"}, "A (2)"), "A (4)");
EXPECT_EQ(GUI::Util::String::suggestName({"A"}, "A (2)"), "A (2)");
EXPECT_EQ(GUI::Util::String::suggestName({"A"}, "A (7)"), "A (7)");
EXPECT_EQ(GUI::Util::String::suggestName({"A (0)"}, "A"), "A (1)");
EXPECT_EQ(GUI::Util::String::suggestName({"A, A (0)"}, "A"), "A (1)");
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment