1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
|
#ifndef QT_NO_DEBUG
#include "mostQtHeaders.h"
#include "syntaxcheck_t.h"
#include "tablemanipulation.h"
#include "qdocumentcursor.h"
#include "qdocument.h"
#include "qeditor.h"
#include "latexdocument.h"
#include "latexeditorview_config.h"
//#include "syntaxcheck.h"
#include "testutil.h"
#include <QtTest/QtTest>
SyntaxCheckTest::SyntaxCheckTest(LatexEditorView* ed): edView(ed){}
void SyntaxCheckTest::checktabular_data(){
QTest::addColumn<QString>("text");
QTest::addColumn<int>("row");
QTest::addColumn<int>("col");
QTest::addColumn<QString>("expectedMessage");
//-------------cursor without selection--------------
QTest::newRow("all okay")
<< "\\begin{tabular}{ll}\na&b\\\\\nc&d\\\\\ne&f\\\\\n\\end{tabular}\n"
<< 1 << 0
<< "no error";
QTest::newRow("too little cols")
<< "\\begin{tabular}{ll}\na\\\\\nc&d\\\\\ne&f\\\\\n\\end{tabular}\n"
<< 1 << 1
<< "cols in tabular missing";
QTest::newRow("too many cols")
<< "\\begin{tabular}{ll}\na&b&b2\\\\\nc&d\\\\\ne&f\\\\\n\\end{tabular}\n"
<< 1 << 6
<< "more cols in tabular than specified";
QTest::newRow("too many cols")
<< "\\begin{tabular}{ll}\na&b&b2\\\\c&d\\\\\ne&f\\\\\n\\end{tabular}\n"
<< 1 << 6
<< "more cols in tabular than specified";
QTest::newRow("no error second col")
<< "\\begin{tabular}{ll}\na&b&b2\\\\c&d\\\\\ne&f\\\\\n\\end{tabular}\n"
<< 1 << 11
<< "no error";
QTest::newRow("no error second col")
<< "\\begin{tabular}{ll}\na&b&b2\\\\c&d\\\\\ne&f\\\\\n\\end{tabular}\n"
<< 1 << 13
<< "no error";
QTest::newRow("too many cols second col")
<< "\\begin{tabular}{lll}\na&b&b2\\\\c&d&e&f\\\\\ne&f\\\\\n\\end{tabular}\n"
<< 1 << 15
<< "more cols in tabular than specified";
QTest::newRow("too many cols ")
<< "\\begin{tabular}{lll}\n&&&\\\\\ne&f\\\\\n\\end{tabular}\n"
<< 1 << 3
<< "more cols in tabular than specified";
QTest::newRow("no error 3 cols")
<< "\\begin{tabular}{lll}\na&b&b2\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 1 << 6
<< "no error";
QTest::newRow("no error 3 cols")
<< "\\begin{tabular}{lll}\na&b&b2\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 1 << 8
<< "no error";
QTest::newRow("no error 3 cols, multicolumn")
<< "\\begin{tabular}{lll}\n\\multicolumn{2}{c}{Hallo}&b2\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 1 << 29
<< "no error";
QTest::newRow("no error 3 cols, multicolumn")
<< "\\begin{tabular}{lll}\n\\multicolumn{2}{c}{Hallo}&b2\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 1 << 27
<< "no error";
QTest::newRow("too many cols, 3 cols, multicolumn v1")
<< "\\begin{tabular}{lll}\n\\multicolumn{2}{c}{Hallo}&b2&b3\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 1 << 31
<< "more cols in tabular than specified";
QTest::newRow("too little cols, 3 cols, multicolumn v2")
<< "\\begin{tabular}{lll}\n\\multicolumn{2}{c}{Hallo}\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 1 << 26
<< "cols in tabular missing";
if (globalExecuteAllTests) {
QTest::newRow("no error 3 cols")
<< "\\begin{tabular}{lll}\n&&\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 1 << 3
<< "no error";
QTest::newRow("no error 3 cols")
<< "\\begin{tabular}{lll}\n&&\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 1 << 2
<< "no error";
QTest::newRow("no error 3 cols,multiple lines")
<< "\\begin{tabular}{lll}\na&\n&\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 2 << 1
<< "no error";
QTest::newRow("no error 3 cols,multiple lines 1/1")
<< "\\begin{tabular}{lll}\na&\n&\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 2 << 1
<< "no error";
QTest::newRow("no error 3 cols,multiple lines")
<< "\\begin{tabular}{lll}\na&\n&\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 2 << 2
<< "no error";
QTest::newRow("too little cols, 3 cols,multiple lines 1")
<< "\\begin{tabular}{lll}\na&\n\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 2 << 1
<< "cols in tabular missing";
QTest::newRow("too many cols, 3 cols,multiple lines 2")
<< "\\begin{tabular}{lll}\na&\n&&a\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 2 << 3
<< "more cols in tabular than specified";
QTest::newRow("too many cols, 3 cols,multiple lines 3")
<< "\\begin{tabular}{lll}\na&\n&&\na\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 2 << 2
<< "more cols in tabular than specified";
QTest::newRow("too many cols, 3 cols,multiple lines 4")
<< "\\begin{tabular}{lll}\na&&\\multicolumn{2}{c}{test}\na\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 1 << 4
<< "more cols in tabular than specified";
QTest::newRow("too many cols, 3 cols,multiple lines 5")
<< "\\begin{tabular}{lll}\na\\multicolumn{4}{c}{test}\na\\\\c&d&e&f\\\\\n\\end{tabular}\n"
<< 1 << 4
<< "more cols in tabular than specified";
QTest::newRow("hline")
<< "\\begin{tabular}{ll}\na&b\\\\\\hline\nc&d\\\\\ne&f\\\\\n\\end{tabular}\n"
<< 1 << 4
<< "no error";
} else qDebug("skipped some tests");
}
void SyntaxCheckTest::checktabular(){
QFETCH(QString, text);
QFETCH(int, row);
QFETCH(int, col);
QFETCH(QString, expectedMessage);
expectedMessage = QApplication::translate("SyntaxCheck", qPrintable(expectedMessage));
bool inlineSyntaxChecking = edView->getConfig()->inlineSyntaxChecking;
bool realtimeChecking = edView->getConfig()->realtimeChecking;
edView->getConfig()->inlineSyntaxChecking = edView->getConfig()->realtimeChecking = true;
edView->editor->setText(text, false);
do{
edView->document->SynChecker.waitForQueueProcess(); // wait for syntax checker to finish (as it runs in a parallel thread)
QApplication::processEvents(QEventLoop::AllEvents,10); // SyntaxChecker posts events for rechecking other lines
}while(edView->document->SynChecker.queuedLines());
StackEnvironment env;
edView->document->getEnv(row,env);
QDocumentLineHandle *prev=edView->document->line(row-1).handle();
TokenStack remainder;
if(prev)
remainder=prev->getCookieLocked(QDocumentLine::LEXER_REMAINDER_COOKIE).value<TokenStack >();
QString message=edView->document->SynChecker.getErrorAt(edView->document->line(row).handle(),col,env,remainder);
QEQUAL(message, expectedMessage);
edView->getConfig()->inlineSyntaxChecking = inlineSyntaxChecking;
edView->getConfig()->realtimeChecking = realtimeChecking;
}
void SyntaxCheckTest::checkkeyval_data(){
QTest::addColumn<QString>("text");
QTest::addColumn<bool>("error");
QTest::newRow("no option")
<<"\\SI{test}"<<false;
QTest::newRow("key only")
<<"\\SI[mode]{test}"<<false;
QTest::newRow("key only,error")
<<"\\SI[modea]{test}"<<true;
QTest::newRow("key/value")
<<"\\SI[mode=text]{test}"<<false;
QTest::newRow("key/value,error key")
<<"\\SI[modea=text]{test}"<<true;
QTest::newRow("key/value,error value")
<<"\\SI[mode=texta]{test}"<<true;
QTest::newRow("2 key/value")
<<"\\SI[color=red,mode=text]{test}"<<false;
QTest::newRow("2 key/value,error key")
<<"\\SI[color=red,modea=text]{test}"<<true;
QTest::newRow("2 key/value,error value")
<<"\\SI[color=red,mode=texta]{test}"<<true;
QTest::newRow("2 key/value,composite key")
<<"\\SI[mode=text,math-sf=test]{test}"<<false;
QTest::newRow("yathesis without options")
<<"\\documentclass{yathesis}"<<false;
QTest::newRow("yathesis with valid option")
<<"\\documentclass[fleqn]{yathesis}"<<false;
QTest::newRow("yathesis with ilegal option")
<<"\\documentclass[fleqn2]{yathesis}"<<true;
QTest::newRow("article")
<<"\\documentclass[fleqn2]{article}"<<false;
QTest::newRow("article if yathesis is loaded")
<<"\\documentclass[fleqn]{yathesis} \\documentclass[fleqn2]{article}"<<false;
QTest::newRow("hypersetup, key in argument")
<<"\\usepackage{hyperref} \\hypersetup{pdfauthor}"<<false;
QTest::newRow("hypersetup, key in argument 2")
<<"\\usepackage{hyperref} \\hypersetup{pdfauthor2}"<<true;
QTest::newRow("hypersetup, val in argument")
<<"\\usepackage{hyperref} \\hypersetup{pdfpagemode=FullScreen}"<<false;
QTest::newRow("hypersetup, val in argument 2")
<<"\\usepackage{hyperref} \\hypersetup{pdfpagemode=test}"<<true;
}
void SyntaxCheckTest::checkkeyval(){
QFETCH(QString, text);
QFETCH(bool, error);
bool inlineSyntaxChecking = edView->getConfig()->inlineSyntaxChecking;
bool realtimeChecking = edView->getConfig()->realtimeChecking;
edView->getConfig()->inlineSyntaxChecking = edView->getConfig()->realtimeChecking = true;
text="\\usepackage{siunitx}\n"+text;
edView->editor->setText(text, false);
LatexDocument *doc=edView->getDocument();
do{
doc->SynChecker.waitForQueueProcess(); // wait for syntax checker to finish (as it runs in a parallel thread)
QApplication::processEvents(QEventLoop::AllEvents,10); // SyntaxChecker posts events for rechecking other lines
}while(doc->SynChecker.queuedLines());
QDocumentLineHandle *dlh=doc->line(1).handle();
QList<QFormatRange> formats=dlh->getOverlays(LatexEditorView::syntaxErrorFormat);
QEQUAL(!formats.isEmpty(),error);
edView->getConfig()->inlineSyntaxChecking = inlineSyntaxChecking;
edView->getConfig()->realtimeChecking = realtimeChecking;
}
void SyntaxCheckTest::checkArguments_data(){
QTest::addColumn<QString>("text");
QTest::addColumn<bool>("error");
QTest::newRow("simple")
<<"\\_"<<false;
QTest::newRow("at")
<<"\\@as"<<false;
QTest::newRow("at2")
<<"\\sdf@as"<<false;
QTest::newRow("newcommand")
<<"\\newcommand{\\test}{\\abcd}"<<false;
QTest::newRow("newcommand2")
<<"\\newcommand{\\test}{\\abcd\n \\abcd}"<<false;
QTest::newRow("newcommand3")
<<"\\newcommand{\\test}{\\abcd\n{\n \\abcd}\n}"<<false;
}
void SyntaxCheckTest::checkArguments(){
QFETCH(QString, text);
QFETCH(bool, error);
bool inlineSyntaxChecking = edView->getConfig()->inlineSyntaxChecking;
bool realtimeChecking = edView->getConfig()->realtimeChecking;
edView->getConfig()->inlineSyntaxChecking = edView->getConfig()->realtimeChecking = true;
//text="\\usepackage{siunitx}\n"+text;
edView->editor->setText(text, false);
LatexDocument *doc=edView->getDocument();
do{
doc->SynChecker.waitForQueueProcess(); // wait for syntax checker to finish (as it runs in a parallel thread)
QApplication::processEvents(QEventLoop::AllEvents,10); // SyntaxChecker posts events for rechecking other lines
}while(doc->SynChecker.queuedLines());
bool synError=false;
for(int i=0;i<doc->lineCount();i++){
QDocumentLineHandle *dlh=doc->line(i).handle();
QList<QFormatRange> formats=dlh->getOverlays(LatexEditorView::syntaxErrorFormat);
if(!formats.isEmpty())
synError=true;
}
QEQUAL(synError,error);
edView->getConfig()->inlineSyntaxChecking = inlineSyntaxChecking;
edView->getConfig()->realtimeChecking = realtimeChecking;
}
#endif
|