2022-01-05 00:07:50 +01:00
|
|
|
/** @file testRESearch.cxx
|
|
|
|
** Unit Tests for Scintilla internal data structures
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstring>
|
|
|
|
#include <stdexcept>
|
2023-11-05 18:24:41 +01:00
|
|
|
#include <string>
|
2022-01-05 00:07:50 +01:00
|
|
|
#include <string_view>
|
|
|
|
#include <vector>
|
2023-11-05 18:24:41 +01:00
|
|
|
#include <array>
|
2022-01-05 00:07:50 +01:00
|
|
|
#include <optional>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "ScintillaTypes.h"
|
|
|
|
|
|
|
|
#include "Debugging.h"
|
|
|
|
|
|
|
|
#include "Position.h"
|
|
|
|
#include "SplitVector.h"
|
|
|
|
#include "Partitioning.h"
|
|
|
|
#include "RunStyles.h"
|
|
|
|
#include "CellBuffer.h"
|
|
|
|
#include "CharClassify.h"
|
|
|
|
#include "RESearch.h"
|
|
|
|
|
|
|
|
#include "catch.hpp"
|
|
|
|
|
|
|
|
using namespace Scintilla;
|
|
|
|
using namespace Scintilla::Internal;
|
|
|
|
|
|
|
|
class StringCI : public CharacterIndexer {
|
|
|
|
std::string s;
|
|
|
|
public:
|
|
|
|
StringCI(std::string_view sv_) : s(sv_) {
|
|
|
|
}
|
|
|
|
Sci::Position Length() const noexcept {
|
|
|
|
return s.length();
|
|
|
|
}
|
|
|
|
char CharAt(Sci::Position index) const override {
|
|
|
|
return s.at(index);
|
|
|
|
}
|
Updated to Scintilla 5.4.1 & Lexilla 5.3.0
Scintilla 5.4.1
https://www.scintilla.org/scintilla541.zip
Released 27 December 2023.
1. Add IDocumentEditable interface to allow efficient interaction with document objects which may not be visible in a Scintilla instance. This feature is provisonal and may change before being declared stable. For better type-safety, the ScintillaCall C++ API uses IDocumentEditable* where void* was used before which may require changes to client code that uses document pointer APIs DocPointer, SetDocPointer, CreateDocument, AddRefDocument, and ReleaseDocument.
2. Ctrl-click on a selection deselects it in multiple selection mode.
3. Add SCI_SELECTIONFROMPOINT for modifying multiple selections.
4. Add SCI_SETMOVEEXTENDSSELECTION and SCI_CHANGESELECTIONMODE to simplify selection mode manipulation.
5. Improve performance of global replace by reducing cache invalidation overhead. [Feature #1502](https://sourceforge.net/p/scintilla/feature-requests/1502/).
6. Fix regular expression search for "\<" matching beginning of search when not beginning of word and for "\>" not matching line end. [Bug #2157](https://sourceforge.net/p/scintilla/bugs/2157/).
7. Fix regular expression search failure when search for "\<" followed by search for "\>". [Bug #2413](https://sourceforge.net/p/scintilla/bugs/2413/).
8. Fix regular expression assertion (^, $, \b. \B) failures when using SCFIND_CXX11REGEX. [Bug #2405](https://sourceforge.net/p/scintilla/bugs/2405/).
9. Fix regular expression bug in reverse direction where shortened match returned. [Bug #2405](https://sourceforge.net/p/scintilla/bugs/2405/).
10. Avoid character fragments in regular expression search results. [Bug #2405](https://sourceforge.net/p/scintilla/bugs/2405/).
11. With a document that does not have the SC_DOCUMENTOPTION_TEXT_LARGE option set, allocating more than 2G (calling SCI_ALLOCATE or similar) will now fail with SC_STATUS_FAILURE.
12. Protect SCI_REPLACETARGET, SCI_REPLACETARGETMINIMAL, and SCI_REPLACETARGETRE from application changing target in notification handlers. [Bug #2289](https://sourceforge.net/p/scintilla/bugs/2289/).
Lexilla 5.3.0
https://www.scintilla.org/lexilla530.zip
Released 27 December 2023.
1. Fix calling AddStaticLexerModule by defining as C++ instead of C which matches header. [Bug #2421](https://sourceforge.net/p/scintilla/bugs/2421/).
2. Bash: Fix shift operator << incorrectly recognized as here-doc. [Issue #215](https://github.com/ScintillaOrg/lexilla/issues/215).
3. Bash: Fix termination of '${' with first unquoted '}' instead of nesting. [Issue #216](https://github.com/ScintillaOrg/lexilla/issues/216).
4. HTML: JavaScript double-quoted strings may escape line end with '\'. [Issue #214](https://github.com/ScintillaOrg/lexilla/issues/214).
5. Lua: recognize --- doc comments. Defined by [LDoc](https://github.com/lunarmodules/ldoc). Does not recognize --[[-- doc comments which seem less common.
Close #14375
2023-11-19 18:46:55 +01:00
|
|
|
Sci::Position MovePositionOutsideChar(Sci::Position pos, [[maybe_unused]] Sci::Position moveDir) const noexcept override {
|
|
|
|
return pos;
|
|
|
|
}
|
2023-11-05 18:24:41 +01:00
|
|
|
std::string GetCharRange(Sci::Position position, Sci::Position lengthRetrieve) const {
|
|
|
|
return s.substr(position, lengthRetrieve);
|
|
|
|
}
|
2022-01-05 00:07:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// Test RESearch.
|
|
|
|
|
|
|
|
TEST_CASE("RESearch") {
|
|
|
|
|
|
|
|
CharClassify cc;
|
2023-11-05 18:24:41 +01:00
|
|
|
constexpr std::string_view sTextSpace = "Scintilla ";
|
|
|
|
constexpr std::string_view pattern = "[a-z]+";
|
2022-01-05 00:07:50 +01:00
|
|
|
|
|
|
|
SECTION("Compile") {
|
|
|
|
std::unique_ptr<RESearch> re = std::make_unique<RESearch>(&cc);
|
2023-11-05 18:24:41 +01:00
|
|
|
const char *msg = re->Compile(pattern.data(), pattern.length(), true, false);
|
2022-01-05 00:07:50 +01:00
|
|
|
REQUIRE(nullptr == msg);
|
|
|
|
}
|
|
|
|
|
Updated to Scintilla 5.4.1 & Lexilla 5.3.0
Scintilla 5.4.1
https://www.scintilla.org/scintilla541.zip
Released 27 December 2023.
1. Add IDocumentEditable interface to allow efficient interaction with document objects which may not be visible in a Scintilla instance. This feature is provisonal and may change before being declared stable. For better type-safety, the ScintillaCall C++ API uses IDocumentEditable* where void* was used before which may require changes to client code that uses document pointer APIs DocPointer, SetDocPointer, CreateDocument, AddRefDocument, and ReleaseDocument.
2. Ctrl-click on a selection deselects it in multiple selection mode.
3. Add SCI_SELECTIONFROMPOINT for modifying multiple selections.
4. Add SCI_SETMOVEEXTENDSSELECTION and SCI_CHANGESELECTIONMODE to simplify selection mode manipulation.
5. Improve performance of global replace by reducing cache invalidation overhead. [Feature #1502](https://sourceforge.net/p/scintilla/feature-requests/1502/).
6. Fix regular expression search for "\<" matching beginning of search when not beginning of word and for "\>" not matching line end. [Bug #2157](https://sourceforge.net/p/scintilla/bugs/2157/).
7. Fix regular expression search failure when search for "\<" followed by search for "\>". [Bug #2413](https://sourceforge.net/p/scintilla/bugs/2413/).
8. Fix regular expression assertion (^, $, \b. \B) failures when using SCFIND_CXX11REGEX. [Bug #2405](https://sourceforge.net/p/scintilla/bugs/2405/).
9. Fix regular expression bug in reverse direction where shortened match returned. [Bug #2405](https://sourceforge.net/p/scintilla/bugs/2405/).
10. Avoid character fragments in regular expression search results. [Bug #2405](https://sourceforge.net/p/scintilla/bugs/2405/).
11. With a document that does not have the SC_DOCUMENTOPTION_TEXT_LARGE option set, allocating more than 2G (calling SCI_ALLOCATE or similar) will now fail with SC_STATUS_FAILURE.
12. Protect SCI_REPLACETARGET, SCI_REPLACETARGETMINIMAL, and SCI_REPLACETARGETRE from application changing target in notification handlers. [Bug #2289](https://sourceforge.net/p/scintilla/bugs/2289/).
Lexilla 5.3.0
https://www.scintilla.org/lexilla530.zip
Released 27 December 2023.
1. Fix calling AddStaticLexerModule by defining as C++ instead of C which matches header. [Bug #2421](https://sourceforge.net/p/scintilla/bugs/2421/).
2. Bash: Fix shift operator << incorrectly recognized as here-doc. [Issue #215](https://github.com/ScintillaOrg/lexilla/issues/215).
3. Bash: Fix termination of '${' with first unquoted '}' instead of nesting. [Issue #216](https://github.com/ScintillaOrg/lexilla/issues/216).
4. HTML: JavaScript double-quoted strings may escape line end with '\'. [Issue #214](https://github.com/ScintillaOrg/lexilla/issues/214).
5. Lua: recognize --- doc comments. Defined by [LDoc](https://github.com/lunarmodules/ldoc). Does not recognize --[[-- doc comments which seem less common.
Close #14375
2023-11-19 18:46:55 +01:00
|
|
|
SECTION("Bug2413") {
|
|
|
|
// Check for https://sourceforge.net/p/scintilla/bugs/2413/
|
|
|
|
std::unique_ptr<RESearch> re = std::make_unique<RESearch>(&cc);
|
|
|
|
constexpr std::string_view BOW = "\\<";
|
|
|
|
constexpr std::string_view EOW = "\\>";
|
|
|
|
const char *msg = re->Compile(BOW.data(), BOW.length(), true, false);
|
|
|
|
REQUIRE(nullptr == msg);
|
|
|
|
msg = re->Compile(EOW.data(), EOW.length(), true, false);
|
|
|
|
REQUIRE(nullptr == msg);
|
|
|
|
}
|
|
|
|
|
2022-01-05 00:07:50 +01:00
|
|
|
SECTION("Execute") {
|
|
|
|
std::unique_ptr<RESearch> re = std::make_unique<RESearch>(&cc);
|
2023-11-05 18:24:41 +01:00
|
|
|
re->Compile(pattern.data(), pattern.length(), true, false);
|
2022-01-05 00:07:50 +01:00
|
|
|
StringCI sci(sTextSpace);
|
|
|
|
const int x = re->Execute(sci, 0, sci.Length());
|
|
|
|
REQUIRE(x == 1);
|
|
|
|
REQUIRE(re->bopat[0] == 1);
|
|
|
|
REQUIRE(re->eopat[0] == sci.Length() - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Grab") {
|
|
|
|
std::unique_ptr<RESearch> re = std::make_unique<RESearch>(&cc);
|
2023-11-05 18:24:41 +01:00
|
|
|
re->Compile(pattern.data(), pattern.length(), true, false);
|
2022-01-05 00:07:50 +01:00
|
|
|
StringCI sci(sTextSpace);
|
|
|
|
re->Execute(sci, 0, sci.Length());
|
2023-11-05 18:24:41 +01:00
|
|
|
std::string pat = sci.GetCharRange(re->bopat[0], re->eopat[0] - re->bopat[0]);
|
|
|
|
REQUIRE(pat == "cintilla");
|
2022-01-05 00:07:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|