123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229 |
- //===- unittest/Format/FormatTestJS.cpp - Formatting unit tests for JS ----===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is distributed under the University of Illinois Open Source
- // License. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- #include "FormatTestUtils.h"
- #include "clang/Format/Format.h"
- #include "llvm/Support/Debug.h"
- #include "gtest/gtest.h"
- #define DEBUG_TYPE "format-test"
- namespace clang {
- namespace format {
- class FormatTestJS : public ::testing::Test {
- protected:
- static std::string format(llvm::StringRef Code, unsigned Offset,
- unsigned Length, const FormatStyle &Style) {
- DEBUG(llvm::errs() << "---\n");
- DEBUG(llvm::errs() << Code << "\n\n");
- std::vector<tooling::Range> Ranges(1, tooling::Range(Offset, Length));
- FormattingAttemptStatus Status;
- tooling::Replacements Replaces =
- reformat(Style, Code, Ranges, "<stdin>", &Status);
- EXPECT_TRUE(Status.FormatComplete);
- auto Result = applyAllReplacements(Code, Replaces);
- EXPECT_TRUE(static_cast<bool>(Result));
- DEBUG(llvm::errs() << "\n" << *Result << "\n\n");
- return *Result;
- }
- static std::string format(
- llvm::StringRef Code,
- const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_JavaScript)) {
- return format(Code, 0, Code.size(), Style);
- }
- static FormatStyle getGoogleJSStyleWithColumns(unsigned ColumnLimit) {
- FormatStyle Style = getGoogleStyle(FormatStyle::LK_JavaScript);
- Style.ColumnLimit = ColumnLimit;
- return Style;
- }
- static void verifyFormat(
- llvm::StringRef Code,
- const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_JavaScript)) {
- std::string Result = format(test::messUp(Code), Style);
- EXPECT_EQ(Code.str(), Result) << "Formatted:\n" << Result;
- }
- static void verifyFormat(
- llvm::StringRef Expected,
- llvm::StringRef Code,
- const FormatStyle &Style = getGoogleStyle(FormatStyle::LK_JavaScript)) {
- std::string Result = format(Code, Style);
- EXPECT_EQ(Expected.str(), Result) << "Formatted:\n" << Result;
- }
- };
- TEST_F(FormatTestJS, BlockComments) {
- verifyFormat("/* aaaaaaaaaaaaa */ aaaaaaaaaaaaaaaaaaaaaaaaaaa(\n"
- " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa);");
- // Breaks after a single line block comment.
- EXPECT_EQ("aaaaa = bbbb.ccccccccccccccc(\n"
- " /** @type_{!cccc.rrrrrrr.MMMMMMMMMMMM.LLLLLLLLLLL.lala} */\n"
- " mediaMessage);",
- format("aaaaa = bbbb.ccccccccccccccc(\n"
- " /** "
- "@type_{!cccc.rrrrrrr.MMMMMMMMMMMM.LLLLLLLLLLL.lala} */ "
- "mediaMessage);",
- getGoogleJSStyleWithColumns(70)));
- // Breaks after a multiline block comment.
- EXPECT_EQ(
- "aaaaa = bbbb.ccccccccccccccc(\n"
- " /**\n"
- " * @type_{!cccc.rrrrrrr.MMMMMMMMMMMM.LLLLLLLLLLL.lala}\n"
- " */\n"
- " mediaMessage);",
- format("aaaaa = bbbb.ccccccccccccccc(\n"
- " /**\n"
- " * @type_{!cccc.rrrrrrr.MMMMMMMMMMMM.LLLLLLLLLLL.lala}\n"
- " */ mediaMessage);",
- getGoogleJSStyleWithColumns(70)));
- }
- TEST_F(FormatTestJS, JSDocComments) {
- // Break the first line of a multiline jsdoc comment.
- EXPECT_EQ("/**\n"
- " * jsdoc line 1\n"
- " * jsdoc line 2\n"
- " */",
- format("/** jsdoc line 1\n"
- " * jsdoc line 2\n"
- " */",
- getGoogleJSStyleWithColumns(20)));
- // Both break after '/**' and break the line itself.
- EXPECT_EQ("/**\n"
- " * jsdoc line long\n"
- " * long jsdoc line 2\n"
- " */",
- format("/** jsdoc line long long\n"
- " * jsdoc line 2\n"
- " */",
- getGoogleJSStyleWithColumns(20)));
- // Break a short first line if the ending '*/' is on a newline.
- EXPECT_EQ("/**\n"
- " * jsdoc line 1\n"
- " */",
- format("/** jsdoc line 1\n"
- " */", getGoogleJSStyleWithColumns(20)));
- // Don't break the first line of a short single line jsdoc comment.
- EXPECT_EQ("/** jsdoc line 1 */",
- format("/** jsdoc line 1 */", getGoogleJSStyleWithColumns(20)));
- // Don't break the first line of a single line jsdoc comment if it just fits
- // the column limit.
- EXPECT_EQ("/** jsdoc line 12 */",
- format("/** jsdoc line 12 */", getGoogleJSStyleWithColumns(20)));
- // Don't break after '/**' and before '*/' if there is no space between
- // '/**' and the content.
- EXPECT_EQ(
- "/*** nonjsdoc long\n"
- " * line */",
- format("/*** nonjsdoc long line */", getGoogleJSStyleWithColumns(20)));
- EXPECT_EQ(
- "/**strange long long\n"
- " * line */",
- format("/**strange long long line */", getGoogleJSStyleWithColumns(20)));
- // Break the first line of a single line jsdoc comment if it just exceeds the
- // column limit.
- EXPECT_EQ("/**\n"
- " * jsdoc line 123\n"
- " */",
- format("/** jsdoc line 123 */", getGoogleJSStyleWithColumns(20)));
- // Break also if the leading indent of the first line is more than 1 column.
- EXPECT_EQ("/**\n"
- " * jsdoc line 123\n"
- " */",
- format("/** jsdoc line 123 */", getGoogleJSStyleWithColumns(20)));
- // Break also if the leading indent of the first line is more than 1 column.
- EXPECT_EQ("/**\n"
- " * jsdoc line 123\n"
- " */",
- format("/** jsdoc line 123 */", getGoogleJSStyleWithColumns(20)));
- // Break after the content of the last line.
- EXPECT_EQ("/**\n"
- " * line 1\n"
- " * line 2\n"
- " */",
- format("/**\n"
- " * line 1\n"
- " * line 2 */",
- getGoogleJSStyleWithColumns(20)));
- // Break both the content and after the content of the last line.
- EXPECT_EQ("/**\n"
- " * line 1\n"
- " * line long long\n"
- " * long\n"
- " */",
- format("/**\n"
- " * line 1\n"
- " * line long long long */",
- getGoogleJSStyleWithColumns(20)));
- // The comment block gets indented.
- EXPECT_EQ("function f() {\n"
- " /**\n"
- " * comment about\n"
- " * x\n"
- " */\n"
- " var x = 1;\n"
- "}",
- format("function f() {\n"
- "/** comment about x */\n"
- "var x = 1;\n"
- "}",
- getGoogleJSStyleWithColumns(20)));
- // Don't break the first line of a single line short jsdoc comment pragma.
- EXPECT_EQ("/** @returns j */",
- format("/** @returns j */",
- getGoogleJSStyleWithColumns(20)));
- // Break a single line long jsdoc comment pragma.
- EXPECT_EQ("/**\n"
- " * @returns {string} jsdoc line 12\n"
- " */",
- format("/** @returns {string} jsdoc line 12 */",
- getGoogleJSStyleWithColumns(20)));
- EXPECT_EQ("/**\n"
- " * @returns {string} jsdoc line 12\n"
- " */",
- format("/** @returns {string} jsdoc line 12 */",
- getGoogleJSStyleWithColumns(20)));
- EXPECT_EQ("/**\n"
- " * @returns {string} jsdoc line 12\n"
- " */",
- format("/** @returns {string} jsdoc line 12*/",
- getGoogleJSStyleWithColumns(20)));
- // Fix a multiline jsdoc comment ending in a comment pragma.
- EXPECT_EQ("/**\n"
- " * line 1\n"
- " * line 2\n"
- " * @returns {string} jsdoc line 12\n"
- " */",
- format("/** line 1\n"
- " * line 2\n"
- " * @returns {string} jsdoc line 12 */",
- getGoogleJSStyleWithColumns(20)));
- EXPECT_EQ("/**\n"
- " * line 1\n"
- " * line 2\n"
- " *\n"
- " * @returns j\n"
- " */",
- format("/** line 1\n"
- " * line 2\n"
- " *\n"
- " * @returns j */",
- getGoogleJSStyleWithColumns(20)));
- }
- TEST_F(FormatTestJS, UnderstandsJavaScriptOperators) {
- verifyFormat("a == = b;");
- verifyFormat("a != = b;");
- verifyFormat("a === b;");
- verifyFormat("aaaaaaa ===\n b;", getGoogleJSStyleWithColumns(10));
- verifyFormat("a !== b;");
- verifyFormat("aaaaaaa !==\n b;", getGoogleJSStyleWithColumns(10));
- verifyFormat("if (a + b + c +\n"
- " d !==\n"
- " e + f + g)\n"
- " q();",
- getGoogleJSStyleWithColumns(20));
- verifyFormat("a >> >= b;");
- verifyFormat("a >>> b;");
- verifyFormat("aaaaaaa >>>\n b;", getGoogleJSStyleWithColumns(10));
- verifyFormat("a >>>= b;");
- verifyFormat("aaaaaaa >>>=\n b;", getGoogleJSStyleWithColumns(10));
- verifyFormat("if (a + b + c +\n"
- " d >>>\n"
- " e + f + g)\n"
- " q();",
- getGoogleJSStyleWithColumns(20));
- verifyFormat("var x = aaaaaaaaaa ?\n"
- " bbbbbb :\n"
- " ccc;",
- getGoogleJSStyleWithColumns(20));
- verifyFormat("var b = a.map((x) => x + 1);");
- verifyFormat("return ('aaa') in bbbb;");
- verifyFormat("var x = aaaaaaaaaaaaaaaaaaaaaaaaa() in\n"
- " aaaa.aaaaaa.aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;");
- FormatStyle Style = getGoogleJSStyleWithColumns(80);
- Style.AlignOperands = true;
- verifyFormat("var x = aaaaaaaaaaaaaaaaaaaaaaaaa() in\n"
- " aaaa.aaaaaa.aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;",
- Style);
- Style.BreakBeforeBinaryOperators = FormatStyle::BOS_All;
- verifyFormat("var x = aaaaaaaaaaaaaaaaaaaaaaaaa()\n"
- " in aaaa.aaaaaa.aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa;",
- Style);
- // ES6 spread operator.
- verifyFormat("someFunction(...a);");
- verifyFormat("var x = [1, ...a, 2];");
- }
- TEST_F(FormatTestJS, UnderstandsAmpAmp) {
- verifyFormat("e && e.SomeFunction();");
- }
- TEST_F(FormatTestJS, LiteralOperatorsCanBeKeywords) {
- verifyFormat("not.and.or.not_eq = 1;");
- }
- TEST_F(FormatTestJS, ReservedWords) {
- // JavaScript reserved words (aka keywords) are only illegal when used as
- // Identifiers, but are legal as IdentifierNames.
- verifyFormat("x.class.struct = 1;");
- verifyFormat("x.case = 1;");
- verifyFormat("x.interface = 1;");
- verifyFormat("x.for = 1;");
- verifyFormat("x.of();");
- verifyFormat("of(null);");
- verifyFormat("import {of} from 'x';");
- verifyFormat("x.in();");
- verifyFormat("x.let();");
- verifyFormat("x.var();");
- verifyFormat("x.for();");
- verifyFormat("x.as();");
- verifyFormat("x.instanceof();");
- verifyFormat("x.switch();");
- verifyFormat("x.case();");
- verifyFormat("x.delete();");
- verifyFormat("x.throw();");
- verifyFormat("x.throws();");
- verifyFormat("x.if();");
- verifyFormat("x = {\n"
- " a: 12,\n"
- " interface: 1,\n"
- " switch: 1,\n"
- "};");
- verifyFormat("var struct = 2;");
- verifyFormat("var union = 2;");
- verifyFormat("var interface = 2;");
- verifyFormat("interface = 2;");
- verifyFormat("x = interface instanceof y;");
- verifyFormat("interface Test {\n"
- " x: string;\n"
- " switch: string;\n"
- " case: string;\n"
- " default: string;\n"
- "}\n");
- verifyFormat("const Axis = {\n"
- " for: 'for',\n"
- " x: 'x'\n"
- "};",
- "const Axis = {for: 'for', x: 'x'};");
- }
- TEST_F(FormatTestJS, ReservedWordsMethods) {
- verifyFormat(
- "class X {\n"
- " delete() {\n"
- " x();\n"
- " }\n"
- " interface() {\n"
- " x();\n"
- " }\n"
- " let() {\n"
- " x();\n"
- " }\n"
- "}\n");
- }
- TEST_F(FormatTestJS, ReservedWordsParenthesized) {
- // All of these are statements using the keyword, not function calls.
- verifyFormat("throw (x + y);\n"
- "await (await x).y;\n"
- "typeof (x) === 'string';\n"
- "void (0);\n"
- "delete (x.y);\n"
- "return (x);\n");
- }
- TEST_F(FormatTestJS, CppKeywords) {
- // Make sure we don't mess stuff up because of C++ keywords.
- verifyFormat("return operator && (aa);");
- // .. or QT ones.
- verifyFormat("slots: Slot[];");
- }
- TEST_F(FormatTestJS, ES6DestructuringAssignment) {
- verifyFormat("var [a, b, c] = [1, 2, 3];");
- verifyFormat("const [a, b, c] = [1, 2, 3];");
- verifyFormat("let [a, b, c] = [1, 2, 3];");
- verifyFormat("var {a, b} = {a: 1, b: 2};");
- verifyFormat("let {a, b} = {a: 1, b: 2};");
- }
- TEST_F(FormatTestJS, ContainerLiterals) {
- verifyFormat("var x = {\n"
- " y: function(a) {\n"
- " return a;\n"
- " }\n"
- "};");
- verifyFormat("return {\n"
- " link: function() {\n"
- " f(); //\n"
- " }\n"
- "};");
- verifyFormat("return {\n"
- " a: a,\n"
- " link: function() {\n"
- " f(); //\n"
- " }\n"
- "};");
- verifyFormat("return {\n"
- " a: a,\n"
- " link: function() {\n"
- " f(); //\n"
- " },\n"
- " link: function() {\n"
- " f(); //\n"
- " }\n"
- "};");
- verifyFormat("var stuff = {\n"
- " // comment for update\n"
- " update: false,\n"
- " // comment for modules\n"
- " modules: false,\n"
- " // comment for tasks\n"
- " tasks: false\n"
- "};");
- verifyFormat("return {\n"
- " 'finish':\n"
- " //\n"
- " a\n"
- "};");
- verifyFormat("var obj = {\n"
- " fooooooooo: function(x) {\n"
- " return x.zIsTooLongForOneLineWithTheDeclarationLine();\n"
- " }\n"
- "};");
- // Simple object literal, as opposed to enum style below.
- verifyFormat("var obj = {a: 123};");
- // Enum style top level assignment.
- verifyFormat("X = {\n a: 123\n};");
- verifyFormat("X.Y = {\n a: 123\n};");
- // But only on the top level, otherwise its a plain object literal assignment.
- verifyFormat("function x() {\n"
- " y = {z: 1};\n"
- "}");
- verifyFormat("x = foo && {a: 123};");
- // Arrow functions in object literals.
- verifyFormat("var x = {\n"
- " y: (a) => {\n"
- " return a;\n"
- " }\n"
- "};");
- verifyFormat("var x = {y: (a) => a};");
- // Methods in object literals.
- verifyFormat("var x = {\n"
- " y(a: string): number {\n"
- " return a;\n"
- " }\n"
- "};");
- verifyFormat("var x = {\n"
- " y(a: string) {\n"
- " return a;\n"
- " }\n"
- "};");
- // Computed keys.
- verifyFormat("var x = {[a]: 1, b: 2, [c]: 3};");
- verifyFormat("var x = {\n"
- " [a]: 1,\n"
- " b: 2,\n"
- " [c]: 3,\n"
- "};");
- // Object literals can leave out labels.
- verifyFormat("f({a}, () => {\n"
- " g(); //\n"
- "});");
- // Keys can be quoted.
- verifyFormat("var x = {\n"
- " a: a,\n"
- " b: b,\n"
- " 'c': c,\n"
- "};");
- // Dict literals can skip the label names.
- verifyFormat("var x = {\n"
- " aaa,\n"
- " aaa,\n"
- " aaa,\n"
- "};");
- verifyFormat("return {\n"
- " a,\n"
- " b: 'b',\n"
- " c,\n"
- "};");
- }
- TEST_F(FormatTestJS, MethodsInObjectLiterals) {
- verifyFormat("var o = {\n"
- " value: 'test',\n"
- " get value() { // getter\n"
- " return this.value;\n"
- " }\n"
- "};");
- verifyFormat("var o = {\n"
- " value: 'test',\n"
- " set value(val) { // setter\n"
- " this.value = val;\n"
- " }\n"
- "};");
- verifyFormat("var o = {\n"
- " value: 'test',\n"
- " someMethod(val) { // method\n"
- " doSomething(this.value + val);\n"
- " }\n"
- "};");
- verifyFormat("var o = {\n"
- " someMethod(val) { // method\n"
- " doSomething(this.value + val);\n"
- " },\n"
- " someOtherMethod(val) { // method\n"
- " doSomething(this.value + val);\n"
- " }\n"
- "};");
- }
- TEST_F(FormatTestJS, GettersSettersVisibilityKeywords) {
- // Don't break after "protected"
- verifyFormat("class X {\n"
- " protected get getter():\n"
- " number {\n"
- " return 1;\n"
- " }\n"
- "}",
- getGoogleJSStyleWithColumns(12));
- // Don't break after "get"
- verifyFormat("class X {\n"
- " protected get someReallyLongGetterName():\n"
- " number {\n"
- " return 1;\n"
- " }\n"
- "}",
- getGoogleJSStyleWithColumns(40));
- }
- TEST_F(FormatTestJS, SpacesInContainerLiterals) {
- verifyFormat("var arr = [1, 2, 3];");
- verifyFormat("f({a: 1, b: 2, c: 3});");
- verifyFormat("var object_literal_with_long_name = {\n"
- " a: 'aaaaaaaaaaaaaaaaaa',\n"
- " b: 'bbbbbbbbbbbbbbbbbb'\n"
- "};");
- verifyFormat("f({a: 1, b: 2, c: 3});",
- getChromiumStyle(FormatStyle::LK_JavaScript));
- verifyFormat("f({'a': [{}]});");
- }
- TEST_F(FormatTestJS, SingleQuotedStrings) {
- verifyFormat("this.function('', true);");
- }
- TEST_F(FormatTestJS, GoogScopes) {
- verifyFormat("goog.scope(function() {\n"
- "var x = a.b;\n"
- "var y = c.d;\n"
- "}); // goog.scope");
- verifyFormat("goog.scope(function() {\n"
- "// test\n"
- "var x = 0;\n"
- "// test\n"
- "});");
- }
- TEST_F(FormatTestJS, IIFEs) {
- // Internal calling parens; no semi.
- verifyFormat("(function() {\n"
- "var a = 1;\n"
- "}())");
- // External calling parens; no semi.
- verifyFormat("(function() {\n"
- "var b = 2;\n"
- "})()");
- // Internal calling parens; with semi.
- verifyFormat("(function() {\n"
- "var c = 3;\n"
- "}());");
- // External calling parens; with semi.
- verifyFormat("(function() {\n"
- "var d = 4;\n"
- "})();");
- }
- TEST_F(FormatTestJS, GoogModules) {
- verifyFormat("goog.module('this.is.really.absurdly.long');",
- getGoogleJSStyleWithColumns(40));
- verifyFormat("goog.require('this.is.really.absurdly.long');",
- getGoogleJSStyleWithColumns(40));
- verifyFormat("goog.provide('this.is.really.absurdly.long');",
- getGoogleJSStyleWithColumns(40));
- verifyFormat("var long = goog.require('this.is.really.absurdly.long');",
- getGoogleJSStyleWithColumns(40));
- verifyFormat("goog.forwardDeclare('this.is.really.absurdly.long');",
- getGoogleJSStyleWithColumns(40));
- // These should be wrapped normally.
- verifyFormat(
- "var MyLongClassName =\n"
- " goog.module.get('my.long.module.name.followedBy.MyLongClassName');");
- verifyFormat("function a() {\n"
- " goog.setTestOnly();\n"
- "}\n",
- "function a() {\n"
- "goog.setTestOnly();\n"
- "}\n");
- }
- TEST_F(FormatTestJS, FormatsNamespaces) {
- verifyFormat("namespace Foo {\n"
- " export let x = 1;\n"
- "}\n");
- verifyFormat("declare namespace Foo {\n"
- " export let x: number;\n"
- "}\n");
- }
- TEST_F(FormatTestJS, NamespacesMayNotWrap) {
- verifyFormat("declare namespace foobarbaz {\n"
- "}\n", getGoogleJSStyleWithColumns(18));
- verifyFormat("declare module foobarbaz {\n"
- "}\n", getGoogleJSStyleWithColumns(15));
- verifyFormat("namespace foobarbaz {\n"
- "}\n", getGoogleJSStyleWithColumns(10));
- verifyFormat("module foobarbaz {\n"
- "}\n", getGoogleJSStyleWithColumns(7));
- }
- TEST_F(FormatTestJS, AmbientDeclarations) {
- FormatStyle NineCols = getGoogleJSStyleWithColumns(9);
- verifyFormat(
- "declare class\n"
- " X {}",
- NineCols);
- verifyFormat(
- "declare function\n"
- "x();", // TODO(martinprobst): should ideally be indented.
- NineCols);
- verifyFormat("declare function foo();\n"
- "let x = 1;\n");
- verifyFormat("declare function foo(): string;\n"
- "let x = 1;\n");
- verifyFormat("declare function foo(): {x: number};\n"
- "let x = 1;\n");
- verifyFormat("declare class X {}\n"
- "let x = 1;\n");
- verifyFormat("declare interface Y {}\n"
- "let x = 1;\n");
- verifyFormat(
- "declare enum X {\n"
- "}",
- NineCols);
- verifyFormat(
- "declare let\n"
- " x: number;",
- NineCols);
- }
- TEST_F(FormatTestJS, FormatsFreestandingFunctions) {
- verifyFormat("function outer1(a, b) {\n"
- " function inner1(a, b) {\n"
- " return a;\n"
- " }\n"
- " inner1(a, b);\n"
- "}\n"
- "function outer2(a, b) {\n"
- " function inner2(a, b) {\n"
- " return a;\n"
- " }\n"
- " inner2(a, b);\n"
- "}");
- verifyFormat("function f() {}");
- verifyFormat("function aFunction() {}\n"
- "(function f() {\n"
- " var x = 1;\n"
- "}());\n");
- verifyFormat("function aFunction() {}\n"
- "{\n"
- " let x = 1;\n"
- " console.log(x);\n"
- "}\n");
- }
- TEST_F(FormatTestJS, GeneratorFunctions) {
- verifyFormat("function* f() {\n"
- " let x = 1;\n"
- " yield x;\n"
- " yield* something();\n"
- " yield [1, 2];\n"
- " yield {a: 1};\n"
- "}");
- verifyFormat("function*\n"
- " f() {\n"
- "}",
- getGoogleJSStyleWithColumns(8));
- verifyFormat("export function* f() {\n"
- " yield 1;\n"
- "}\n");
- verifyFormat("class X {\n"
- " * generatorMethod() {\n"
- " yield x;\n"
- " }\n"
- "}");
- verifyFormat("var x = {\n"
- " a: function*() {\n"
- " //\n"
- " }\n"
- "}\n");
- }
- TEST_F(FormatTestJS, AsyncFunctions) {
- verifyFormat("async function f() {\n"
- " let x = 1;\n"
- " return fetch(x);\n"
- "}");
- verifyFormat("async function f() {\n"
- " return 1;\n"
- "}\n"
- "\n"
- "function a() {\n"
- " return 1;\n"
- "}\n",
- " async function f() {\n"
- " return 1;\n"
- "}\n"
- "\n"
- " function a() {\n"
- " return 1;\n"
- "} \n");
- verifyFormat("async function* f() {\n"
- " yield fetch(x);\n"
- "}");
- verifyFormat("export async function f() {\n"
- " return fetch(x);\n"
- "}");
- verifyFormat("let x = async () => f();");
- verifyFormat("let x = async function() {\n"
- " f();\n"
- "};");
- verifyFormat("let x = async();");
- verifyFormat("class X {\n"
- " async asyncMethod() {\n"
- " return fetch(1);\n"
- " }\n"
- "}");
- verifyFormat("function initialize() {\n"
- " // Comment.\n"
- " return async.then();\n"
- "}\n");
- verifyFormat("for await (const x of y) {\n"
- " console.log(x);\n"
- "}\n");
- verifyFormat("function asyncLoop() {\n"
- " for await (const x of y) {\n"
- " console.log(x);\n"
- " }\n"
- "}\n");
- }
- TEST_F(FormatTestJS, FunctionParametersTrailingComma) {
- verifyFormat("function trailingComma(\n"
- " p1,\n"
- " p2,\n"
- " p3,\n"
- ") {\n"
- " a; //\n"
- "}\n",
- "function trailingComma(p1, p2, p3,) {\n"
- " a; //\n"
- "}\n");
- verifyFormat("trailingComma(\n"
- " p1,\n"
- " p2,\n"
- " p3,\n"
- ");\n",
- "trailingComma(p1, p2, p3,);\n");
- verifyFormat("trailingComma(\n"
- " p1 // hello\n"
- ");\n",
- "trailingComma(p1 // hello\n"
- ");\n");
- }
- TEST_F(FormatTestJS, ArrayLiterals) {
- verifyFormat("var aaaaa: List<SomeThing> =\n"
- " [new SomeThingAAAAAAAAAAAA(), new SomeThingBBBBBBBBB()];");
- verifyFormat("return [\n"
- " aaaaaaaaaaaaaaaaaaaaaaaaaaa, bbbbbbbbbbbbbbbbbbbbbbbbbbb,\n"
- " ccccccccccccccccccccccccccc\n"
- "];");
- verifyFormat("return [\n"
- " aaaa().bbbbbbbb('A'),\n"
- " aaaa().bbbbbbbb('B'),\n"
- " aaaa().bbbbbbbb('C'),\n"
- "];");
- verifyFormat("var someVariable = SomeFunction([\n"
- " aaaaaaaaaaaaaaaaaaaaaaaaaaa, bbbbbbbbbbbbbbbbbbbbbbbbbbb,\n"
- " ccccccccccccccccccccccccccc\n"
- "]);");
- verifyFormat("var someVariable = SomeFunction([\n"
- " [aaaaaaaaaaaaaaaaaaaaaa, bbbbbbbbbbbbbbbbbbbbbb],\n"
- "]);",
- getGoogleJSStyleWithColumns(51));
- verifyFormat("var someVariable = SomeFunction(aaaa, [\n"
- " aaaaaaaaaaaaaaaaaaaaaaaaaaa, bbbbbbbbbbbbbbbbbbbbbbbbbbb,\n"
- " ccccccccccccccccccccccccccc\n"
- "]);");
- verifyFormat("var someVariable = SomeFunction(\n"
- " aaaa,\n"
- " [\n"
- " aaaaaaaaaaaaaaaaaaaaaaaaaa, bbbbbbbbbbbbbbbbbbbbbbbbbb,\n"
- " cccccccccccccccccccccccccc\n"
- " ],\n"
- " aaaa);");
- verifyFormat("var aaaa = aaaaa || // wrap\n"
- " [];");
- verifyFormat("someFunction([], {a: a});");
- verifyFormat("var string = [\n"
- " 'aaaaaa',\n"
- " 'bbbbbb',\n"
- "].join('+');");
- }
- TEST_F(FormatTestJS, ColumnLayoutForArrayLiterals) {
- verifyFormat("var array = [\n"
- " a, a, a, a, a, a, a, a, a, a, a, a, a, a, a,\n"
- " a, a, a, a, a, a, a, a, a, a, a, a, a, a, a,\n"
- "];");
- verifyFormat("var array = someFunction([\n"
- " a, a, a, a, a, a, a, a, a, a, a, a, a, a, a,\n"
- " a, a, a, a, a, a, a, a, a, a, a, a, a, a, a,\n"
- "]);");
- }
- TEST_F(FormatTestJS, FunctionLiterals) {
- FormatStyle Style = getGoogleStyle(FormatStyle::LK_JavaScript);
- Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline;
- verifyFormat("doFoo(function() {});");
- verifyFormat("doFoo(function() { return 1; });", Style);
- verifyFormat("var func = function() {\n"
- " return 1;\n"
- "};");
- verifyFormat("var func = //\n"
- " function() {\n"
- " return 1;\n"
- "};");
- verifyFormat("return {\n"
- " body: {\n"
- " setAttribute: function(key, val) { this[key] = val; },\n"
- " getAttribute: function(key) { return this[key]; },\n"
- " style: {direction: ''}\n"
- " }\n"
- "};",
- Style);
- verifyFormat("abc = xyz ? function() {\n"
- " return 1;\n"
- "} : function() {\n"
- " return -1;\n"
- "};");
- verifyFormat("var closure = goog.bind(\n"
- " function() { // comment\n"
- " foo();\n"
- " bar();\n"
- " },\n"
- " this, arg1IsReallyLongAndNeedsLineBreaks,\n"
- " arg3IsReallyLongAndNeedsLineBreaks);");
- verifyFormat("var closure = goog.bind(function() { // comment\n"
- " foo();\n"
- " bar();\n"
- "}, this);");
- verifyFormat("return {\n"
- " a: 'E',\n"
- " b: function() {\n"
- " return function() {\n"
- " f(); //\n"
- " };\n"
- " }\n"
- "};");
- verifyFormat("{\n"
- " var someVariable = function(x) {\n"
- " return x.zIsTooLongForOneLineWithTheDeclarationLine();\n"
- " };\n"
- "}");
- verifyFormat("someLooooooooongFunction(\n"
- " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,\n"
- " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,\n"
- " function(aaaaaaaaaaaaaaaaaaaaaaaaaaaaa) {\n"
- " // code\n"
- " });");
- verifyFormat("return {\n"
- " a: function SomeFunction() {\n"
- " // ...\n"
- " return 1;\n"
- " }\n"
- "};");
- verifyFormat("this.someObject.doSomething(aaaaaaaaaaaaaaaaaaaaaaaaaa)\n"
- " .then(goog.bind(function(aaaaaaaaaaa) {\n"
- " someFunction();\n"
- " someFunction();\n"
- " }, this), aaaaaaaaaaaaaaaaa);");
- verifyFormat("someFunction(goog.bind(function() {\n"
- " doSomething();\n"
- " doSomething();\n"
- "}, this), goog.bind(function() {\n"
- " doSomething();\n"
- " doSomething();\n"
- "}, this));");
- verifyFormat("SomeFunction(function() {\n"
- " foo();\n"
- " bar();\n"
- "}.bind(this));");
- verifyFormat("SomeFunction((function() {\n"
- " foo();\n"
- " bar();\n"
- " }).bind(this));");
- // FIXME: This is bad, we should be wrapping before "function() {".
- verifyFormat("someFunction(function() {\n"
- " doSomething(); // break\n"
- "})\n"
- " .doSomethingElse(\n"
- " // break\n"
- " );");
- Style.ColumnLimit = 33;
- verifyFormat("f({a: function() { return 1; }});", Style);
- Style.ColumnLimit = 32;
- verifyFormat("f({\n"
- " a: function() { return 1; }\n"
- "});",
- Style);
- }
- TEST_F(FormatTestJS, DontWrapEmptyLiterals) {
- verifyFormat("(aaaaaaaaaaaaaaaaaaaaa.getData as jasmine.Spy)\n"
- " .and.returnValue(Observable.of([]));");
- verifyFormat("(aaaaaaaaaaaaaaaaaaaaa.getData as jasmine.Spy)\n"
- " .and.returnValue(Observable.of({}));");
- verifyFormat("(aaaaaaaaaaaaaaaaaaaaa.getData as jasmine.Spy)\n"
- " .and.returnValue(Observable.of(()));");
- }
- TEST_F(FormatTestJS, InliningFunctionLiterals) {
- FormatStyle Style = getGoogleStyle(FormatStyle::LK_JavaScript);
- Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Inline;
- verifyFormat("var func = function() {\n"
- " return 1;\n"
- "};",
- Style);
- verifyFormat("var func = doSomething(function() { return 1; });", Style);
- verifyFormat("var outer = function() {\n"
- " var inner = function() { return 1; }\n"
- "};",
- Style);
- verifyFormat("function outer1(a, b) {\n"
- " function inner1(a, b) { return a; }\n"
- "}",
- Style);
- Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_All;
- verifyFormat("var func = function() { return 1; };", Style);
- verifyFormat("var func = doSomething(function() { return 1; });", Style);
- verifyFormat(
- "var outer = function() { var inner = function() { return 1; } };",
- Style);
- verifyFormat("function outer1(a, b) {\n"
- " function inner1(a, b) { return a; }\n"
- "}",
- Style);
- Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_None;
- verifyFormat("var func = function() {\n"
- " return 1;\n"
- "};",
- Style);
- verifyFormat("var func = doSomething(function() {\n"
- " return 1;\n"
- "});",
- Style);
- verifyFormat("var outer = function() {\n"
- " var inner = function() {\n"
- " return 1;\n"
- " }\n"
- "};",
- Style);
- verifyFormat("function outer1(a, b) {\n"
- " function inner1(a, b) {\n"
- " return a;\n"
- " }\n"
- "}",
- Style);
- Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_Empty;
- verifyFormat("var func = function() {\n"
- " return 1;\n"
- "};",
- Style);
- }
- TEST_F(FormatTestJS, MultipleFunctionLiterals) {
- FormatStyle Style = getGoogleStyle(FormatStyle::LK_JavaScript);
- Style.AllowShortFunctionsOnASingleLine = FormatStyle::SFS_All;
- verifyFormat("promise.then(\n"
- " function success() {\n"
- " doFoo();\n"
- " doBar();\n"
- " },\n"
- " function error() {\n"
- " doFoo();\n"
- " doBaz();\n"
- " },\n"
- " []);\n");
- verifyFormat("promise.then(\n"
- " function success() {\n"
- " doFoo();\n"
- " doBar();\n"
- " },\n"
- " [],\n"
- " function error() {\n"
- " doFoo();\n"
- " doBaz();\n"
- " });\n");
- verifyFormat("promise.then(\n"
- " [],\n"
- " function success() {\n"
- " doFoo();\n"
- " doBar();\n"
- " },\n"
- " function error() {\n"
- " doFoo();\n"
- " doBaz();\n"
- " });\n");
- verifyFormat("getSomeLongPromise()\n"
- " .then(function(value) { body(); })\n"
- " .thenCatch(function(error) {\n"
- " body();\n"
- " body();\n"
- " });",
- Style);
- verifyFormat("getSomeLongPromise()\n"
- " .then(function(value) {\n"
- " body();\n"
- " body();\n"
- " })\n"
- " .thenCatch(function(error) {\n"
- " body();\n"
- " body();\n"
- " });");
- verifyFormat("getSomeLongPromise()\n"
- " .then(function(value) { body(); })\n"
- " .thenCatch(function(error) { body(); });",
- Style);
- verifyFormat("return [aaaaaaaaaaaaaaaaaaaaaa]\n"
- " .aaaaaaa(function() {\n"
- " //\n"
- " })\n"
- " .bbbbbb();");
- }
- TEST_F(FormatTestJS, ArrowFunctions) {
- verifyFormat("var x = (a) => {\n"
- " return a;\n"
- "};");
- verifyFormat("var x = (a) => {\n"
- " function y() {\n"
- " return 42;\n"
- " }\n"
- " return a;\n"
- "};");
- verifyFormat("var x = (a: type): {some: type} => {\n"
- " return a;\n"
- "};");
- verifyFormat("var x = (a) => a;");
- verifyFormat("return () => [];");
- verifyFormat("var aaaaaaaaaaaaaaaaaaaa = {\n"
- " aaaaaaaaaaaaaaaaaaaaaaaaaaaa:\n"
- " (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,\n"
- " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa) =>\n"
- " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,\n"
- "};");
- verifyFormat("var a = a.aaaaaaa(\n"
- " (a: a) => aaaaaaaaaaaaaaaaaaaaaaaaa(bbbbbbbbb) &&\n"
- " aaaaaaaaaaaaaaaaaaaaaaaaa(bbbbbbb));");
- verifyFormat("var a = a.aaaaaaa(\n"
- " (a: a) => aaaaaaaaaaaaaaaaaaaaa(bbbbbbbbb) ?\n"
- " aaaaaaaaaaaaaaaaaaaaa(bbbbbbb) :\n"
- " aaaaaaaaaaaaaaaaaaaaa(bbbbbbb));");
- // FIXME: This is bad, we should be wrapping before "() => {".
- verifyFormat("someFunction(() => {\n"
- " doSomething(); // break\n"
- "})\n"
- " .doSomethingElse(\n"
- " // break\n"
- " );");
- verifyFormat("const f = (x: string|null): string|null => {\n"
- " return x;\n"
- "}\n");
- }
- TEST_F(FormatTestJS, ReturnStatements) {
- verifyFormat("function() {\n"
- " return [hello, world];\n"
- "}");
- }
- TEST_F(FormatTestJS, ForLoops) {
- verifyFormat("for (var i in [2, 3]) {\n"
- "}");
- verifyFormat("for (var i of [2, 3]) {\n"
- "}");
- verifyFormat("for (let {a, b} of x) {\n"
- "}");
- verifyFormat("for (let {a, b} of [x]) {\n"
- "}");
- verifyFormat("for (let [a, b] of [x]) {\n"
- "}");
- verifyFormat("for (let {a, b} in x) {\n"
- "}");
- }
- TEST_F(FormatTestJS, WrapRespectsAutomaticSemicolonInsertion) {
- // The following statements must not wrap, as otherwise the program meaning
- // would change due to automatic semicolon insertion.
- // See http://www.ecma-international.org/ecma-262/5.1/#sec-7.9.1.
- verifyFormat("return aaaaa;", getGoogleJSStyleWithColumns(10));
- verifyFormat("yield aaaaa;", getGoogleJSStyleWithColumns(10));
- verifyFormat("return /* hello! */ aaaaa;", getGoogleJSStyleWithColumns(10));
- verifyFormat("continue aaaaa;", getGoogleJSStyleWithColumns(10));
- verifyFormat("continue /* hello! */ aaaaa;", getGoogleJSStyleWithColumns(10));
- verifyFormat("break aaaaa;", getGoogleJSStyleWithColumns(10));
- verifyFormat("throw aaaaa;", getGoogleJSStyleWithColumns(10));
- verifyFormat("aaaaaaaaa++;", getGoogleJSStyleWithColumns(10));
- verifyFormat("aaaaaaaaa--;", getGoogleJSStyleWithColumns(10));
- verifyFormat("return [\n"
- " aaa\n"
- "];",
- getGoogleJSStyleWithColumns(12));
- verifyFormat("class X {\n"
- " readonly ratherLongField =\n"
- " 1;\n"
- "}",
- "class X {\n"
- " readonly ratherLongField = 1;\n"
- "}",
- getGoogleJSStyleWithColumns(20));
- verifyFormat("const x = (5 + 9)\n"
- "const y = 3\n",
- "const x = ( 5 + 9)\n"
- "const y = 3\n");
- }
- TEST_F(FormatTestJS, AutomaticSemicolonInsertionHeuristic) {
- verifyFormat("a\n"
- "b;",
- " a \n"
- " b ;");
- verifyFormat("a()\n"
- "b;",
- " a ()\n"
- " b ;");
- verifyFormat("a[b]\n"
- "c;",
- "a [b]\n"
- "c ;");
- verifyFormat("1\n"
- "a;",
- "1 \n"
- "a ;");
- verifyFormat("a\n"
- "1;",
- "a \n"
- "1 ;");
- verifyFormat("a\n"
- "'x';",
- "a \n"
- " 'x';");
- verifyFormat("a++\n"
- "b;",
- "a ++\n"
- "b ;");
- verifyFormat("a\n"
- "!b && c;",
- "a \n"
- " ! b && c;");
- verifyFormat("a\n"
- "if (1) f();",
- " a\n"
- " if (1) f();");
- verifyFormat("a\n"
- "class X {}",
- " a\n"
- " class X {}");
- verifyFormat("var a", "var\n"
- "a");
- verifyFormat("x instanceof String", "x\n"
- "instanceof\n"
- "String");
- verifyFormat("function f(@Foo bar) {}", "function f(@Foo\n"
- " bar) {}");
- verifyFormat("function f(@Foo(Param) bar) {}", "function f(@Foo(Param)\n"
- " bar) {}");
- verifyFormat("a = true\n"
- "return 1",
- "a = true\n"
- " return 1");
- verifyFormat("a = 's'\n"
- "return 1",
- "a = 's'\n"
- " return 1");
- verifyFormat("a = null\n"
- "return 1",
- "a = null\n"
- " return 1");
- // Below "class Y {}" should ideally be on its own line.
- verifyFormat(
- "x = {\n"
- " a: 1\n"
- "} class Y {}",
- " x = {a : 1}\n"
- " class Y { }");
- verifyFormat(
- "if (x) {\n"
- "}\n"
- "return 1",
- "if (x) {}\n"
- " return 1");
- verifyFormat(
- "if (x) {\n"
- "}\n"
- "class X {}",
- "if (x) {}\n"
- " class X {}");
- }
- TEST_F(FormatTestJS, ImportExportASI) {
- verifyFormat(
- "import {x} from 'y'\n"
- "export function z() {}",
- "import {x} from 'y'\n"
- " export function z() {}");
- // Below "class Y {}" should ideally be on its own line.
- verifyFormat(
- "export {x} class Y {}",
- " export {x}\n"
- " class Y {\n}");
- verifyFormat(
- "if (x) {\n"
- "}\n"
- "export class Y {}",
- "if ( x ) { }\n"
- " export class Y {}");
- }
- TEST_F(FormatTestJS, ClosureStyleCasts) {
- verifyFormat("var x = /** @type {foo} */ (bar);");
- }
- TEST_F(FormatTestJS, TryCatch) {
- verifyFormat("try {\n"
- " f();\n"
- "} catch (e) {\n"
- " g();\n"
- "} finally {\n"
- " h();\n"
- "}");
- // But, of course, "catch" is a perfectly fine function name in JavaScript.
- verifyFormat("someObject.catch();");
- verifyFormat("someObject.new();");
- }
- TEST_F(FormatTestJS, StringLiteralConcatenation) {
- verifyFormat("var literal = 'hello ' +\n"
- " 'world';");
- }
- TEST_F(FormatTestJS, RegexLiteralClassification) {
- // Regex literals.
- verifyFormat("var regex = /abc/;");
- verifyFormat("f(/abc/);");
- verifyFormat("f(abc, /abc/);");
- verifyFormat("some_map[/abc/];");
- verifyFormat("var x = a ? /abc/ : /abc/;");
- verifyFormat("for (var i = 0; /abc/.test(s[i]); i++) {\n}");
- verifyFormat("var x = !/abc/.test(y);");
- verifyFormat("var x = foo()! / 10;");
- verifyFormat("var x = a && /abc/.test(y);");
- verifyFormat("var x = a || /abc/.test(y);");
- verifyFormat("var x = a + /abc/.search(y);");
- verifyFormat("/abc/.search(y);");
- verifyFormat("var regexs = {/abc/, /abc/};");
- verifyFormat("return /abc/;");
- // Not regex literals.
- verifyFormat("var a = a / 2 + b / 3;");
- verifyFormat("var a = a++ / 2;");
- // Prefix unary can operate on regex literals, not that it makes sense.
- verifyFormat("var a = ++/a/;");
- // This is a known issue, regular expressions are incorrectly detected if
- // directly following a closing parenthesis.
- verifyFormat("if (foo) / bar /.exec(baz);");
- }
- TEST_F(FormatTestJS, RegexLiteralSpecialCharacters) {
- verifyFormat("var regex = /=/;");
- verifyFormat("var regex = /a*/;");
- verifyFormat("var regex = /a+/;");
- verifyFormat("var regex = /a?/;");
- verifyFormat("var regex = /.a./;");
- verifyFormat("var regex = /a\\*/;");
- verifyFormat("var regex = /^a$/;");
- verifyFormat("var regex = /\\/a/;");
- verifyFormat("var regex = /(?:x)/;");
- verifyFormat("var regex = /x(?=y)/;");
- verifyFormat("var regex = /x(?!y)/;");
- verifyFormat("var regex = /x|y/;");
- verifyFormat("var regex = /a{2}/;");
- verifyFormat("var regex = /a{1,3}/;");
- verifyFormat("var regex = /[abc]/;");
- verifyFormat("var regex = /[^abc]/;");
- verifyFormat("var regex = /[\\b]/;");
- verifyFormat("var regex = /[/]/;");
- verifyFormat("var regex = /[\\/]/;");
- verifyFormat("var regex = /\\[/;");
- verifyFormat("var regex = /\\\\[/]/;");
- verifyFormat("var regex = /}[\"]/;");
- verifyFormat("var regex = /}[/\"]/;");
- verifyFormat("var regex = /}[\"/]/;");
- verifyFormat("var regex = /\\b/;");
- verifyFormat("var regex = /\\B/;");
- verifyFormat("var regex = /\\d/;");
- verifyFormat("var regex = /\\D/;");
- verifyFormat("var regex = /\\f/;");
- verifyFormat("var regex = /\\n/;");
- verifyFormat("var regex = /\\r/;");
- verifyFormat("var regex = /\\s/;");
- verifyFormat("var regex = /\\S/;");
- verifyFormat("var regex = /\\t/;");
- verifyFormat("var regex = /\\v/;");
- verifyFormat("var regex = /\\w/;");
- verifyFormat("var regex = /\\W/;");
- verifyFormat("var regex = /a(a)\\1/;");
- verifyFormat("var regex = /\\0/;");
- verifyFormat("var regex = /\\\\/g;");
- verifyFormat("var regex = /\\a\\\\/g;");
- verifyFormat("var regex = /\a\\//g;");
- verifyFormat("var regex = /a\\//;\n"
- "var x = 0;");
- verifyFormat("var regex = /'/g;", "var regex = /'/g ;");
- verifyFormat("var regex = /'/g; //'", "var regex = /'/g ; //'");
- verifyFormat("var regex = /\\/*/;\n"
- "var x = 0;",
- "var regex = /\\/*/;\n"
- "var x=0;");
- verifyFormat("var x = /a\\//;", "var x = /a\\// \n;");
- verifyFormat("var regex = /\"/;", getGoogleJSStyleWithColumns(16));
- verifyFormat("var regex =\n"
- " /\"/;",
- getGoogleJSStyleWithColumns(15));
- verifyFormat("var regex = //\n"
- " /a/;");
- verifyFormat("var regexs = [\n"
- " /d/, //\n"
- " /aa/, //\n"
- "];");
- }
- TEST_F(FormatTestJS, RegexLiteralModifiers) {
- verifyFormat("var regex = /abc/g;");
- verifyFormat("var regex = /abc/i;");
- verifyFormat("var regex = /abc/m;");
- verifyFormat("var regex = /abc/y;");
- }
- TEST_F(FormatTestJS, RegexLiteralLength) {
- verifyFormat("var regex = /aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/;",
- getGoogleJSStyleWithColumns(60));
- verifyFormat("var regex =\n"
- " /aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/;",
- getGoogleJSStyleWithColumns(60));
- verifyFormat("var regex = /\\xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/;",
- getGoogleJSStyleWithColumns(50));
- }
- TEST_F(FormatTestJS, RegexLiteralExamples) {
- verifyFormat("var regex = search.match(/(?:\?|&)times=([^?&]+)/i);");
- }
- TEST_F(FormatTestJS, IgnoresMpegTS) {
- std::string MpegTS(200, ' ');
- MpegTS.replace(0, strlen("nearlyLooks + like + ts + code; "),
- "nearlyLooks + like + ts + code; ");
- MpegTS[0] = 0x47;
- MpegTS[188] = 0x47;
- verifyFormat(MpegTS, MpegTS);
- }
- TEST_F(FormatTestJS, TypeAnnotations) {
- verifyFormat("var x: string;");
- verifyFormat("var x: {a: string; b: number;} = {};");
- verifyFormat("function x(): string {\n return 'x';\n}");
- verifyFormat("function x(): {x: string} {\n return {x: 'x'};\n}");
- verifyFormat("function x(y: string): string {\n return 'x';\n}");
- verifyFormat("for (var y: string in x) {\n x();\n}");
- verifyFormat("for (var y: string of x) {\n x();\n}");
- verifyFormat("function x(y: {a?: number;} = {}): number {\n"
- " return 12;\n"
- "}");
- verifyFormat("const x: Array<{a: number; b: string;}> = [];");
- verifyFormat("((a: string, b: number): string => a + b);");
- verifyFormat("var x: (y: number) => string;");
- verifyFormat("var x: P<string, (a: number) => string>;");
- verifyFormat("var x = {\n"
- " y: function(): z {\n"
- " return 1;\n"
- " }\n"
- "};");
- verifyFormat("var x = {\n"
- " y: function(): {a: number} {\n"
- " return 1;\n"
- " }\n"
- "};");
- verifyFormat("function someFunc(args: string[]):\n"
- " {longReturnValue: string[]} {}",
- getGoogleJSStyleWithColumns(60));
- verifyFormat(
- "var someValue = (v as aaaaaaaaaaaaaaaaaaaa<T>[])\n"
- " .someFunction(aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa);");
- verifyFormat("const xIsALongIdent:\n"" YJustBarelyFitsLinex[];",
- getGoogleJSStyleWithColumns(20));
- }
- TEST_F(FormatTestJS, UnionIntersectionTypes) {
- verifyFormat("let x: A|B = A | B;");
- verifyFormat("let x: A&B|C = A & B;");
- verifyFormat("let x: Foo<A|B> = new Foo<A|B>();");
- verifyFormat("function(x: A|B): C&D {}");
- verifyFormat("function(x: A|B = A | B): C&D {}");
- verifyFormat("function x(path: number|string) {}");
- verifyFormat("function x(): string|number {}");
- verifyFormat("type Foo = Bar|Baz;");
- verifyFormat("type Foo = Bar<X>|Baz;");
- verifyFormat("type Foo = (Bar<X>|Baz);");
- verifyFormat("let x: Bar|Baz;");
- verifyFormat("let x: Bar<X>|Baz;");
- verifyFormat("let x: (Foo|Bar)[];");
- verifyFormat("type X = {\n"
- " a: Foo|Bar;\n"
- "};");
- verifyFormat("export type X = {\n"
- " a: Foo|Bar;\n"
- "};");
- }
- TEST_F(FormatTestJS, UnionIntersectionTypesInObjectType) {
- verifyFormat("let x: {x: number|null} = {x: number | null};");
- verifyFormat("let nested: {x: {y: number|null}};");
- verifyFormat("let mixed: {x: [number|null, {w: number}]};");
- verifyFormat("class X {\n"
- " contructor(x: {\n"
- " a: a|null,\n"
- " b: b|null,\n"
- " }) {}\n"
- "}");
- }
- TEST_F(FormatTestJS, ClassDeclarations) {
- verifyFormat("class C {\n x: string = 12;\n}");
- verifyFormat("class C {\n x(): string => 12;\n}");
- verifyFormat("class C {\n ['x' + 2]: string = 12;\n}");
- verifyFormat("class C {\n"
- " foo() {}\n"
- " [bar]() {}\n"
- "}\n");
- verifyFormat("class C {\n private x: string = 12;\n}");
- verifyFormat("class C {\n private static x: string = 12;\n}");
- verifyFormat("class C {\n static x(): string {\n return 'asd';\n }\n}");
- verifyFormat("class C extends P implements I {}");
- verifyFormat("class C extends p.P implements i.I {}");
- verifyFormat(
- "x(class {\n"
- " a(): A {}\n"
- "});");
- verifyFormat("class Test {\n"
- " aaaaaaaaaaaaaaaa(aaaaaaaaaaaaaaa: aaaaaaaaaaaaaaaaaaaa):\n"
- " aaaaaaaaaaaaaaaaaaaaaa {}\n"
- "}");
- verifyFormat("foo = class Name {\n"
- " constructor() {}\n"
- "};");
- verifyFormat("foo = class {\n"
- " constructor() {}\n"
- "};");
- verifyFormat("class C {\n"
- " x: {y: Z;} = {};\n"
- " private y: {y: Z;} = {};\n"
- "}");
- // ':' is not a type declaration here.
- verifyFormat("class X {\n"
- " subs = {\n"
- " 'b': {\n"
- " 'c': 1,\n"
- " },\n"
- " };\n"
- "}");
- verifyFormat("@Component({\n"
- " moduleId: module.id,\n"
- "})\n"
- "class SessionListComponent implements OnDestroy, OnInit {\n"
- "}");
- }
- TEST_F(FormatTestJS, InterfaceDeclarations) {
- verifyFormat("interface I {\n"
- " x: string;\n"
- " enum: string[];\n"
- " enum?: string[];\n"
- "}\n"
- "var y;");
- // Ensure that state is reset after parsing the interface.
- verifyFormat("interface a {}\n"
- "export function b() {}\n"
- "var x;");
- // Arrays of object type literals.
- verifyFormat("interface I {\n"
- " o: {}[];\n"
- "}");
- }
- TEST_F(FormatTestJS, ObjectTypesInExtendsImplements) {
- verifyFormat("class C extends {} {}");
- verifyFormat("class C implements {bar: number} {}");
- // Somewhat odd, but probably closest to reasonable formatting?
- verifyFormat("class C implements {\n"
- " bar: number,\n"
- " baz: string,\n"
- "} {}");
- verifyFormat("class C<P extends {}> {}");
- }
- TEST_F(FormatTestJS, EnumDeclarations) {
- verifyFormat("enum Foo {\n"
- " A = 1,\n"
- " B\n"
- "}");
- verifyFormat("export /* somecomment*/ enum Foo {\n"
- " A = 1,\n"
- " B\n"
- "}");
- verifyFormat("enum Foo {\n"
- " A = 1, // comment\n"
- " B\n"
- "}\n"
- "var x = 1;");
- verifyFormat("const enum Foo {\n"
- " A = 1,\n"
- " B\n"
- "}");
- verifyFormat("export const enum Foo {\n"
- " A = 1,\n"
- " B\n"
- "}");
- }
- TEST_F(FormatTestJS, Decorators) {
- verifyFormat("@A\nclass C {\n}");
- verifyFormat("@A({arg: 'value'})\nclass C {\n}");
- verifyFormat("@A\n@B\nclass C {\n}");
- verifyFormat("class C {\n @A x: string;\n}");
- verifyFormat("class C {\n"
- " @A\n"
- " private x(): string {\n"
- " return 'y';\n"
- " }\n"
- "}");
- verifyFormat("class C {\n"
- " private x(@A x: string) {}\n"
- "}");
- verifyFormat("class X {}\n"
- "class Y {}");
- verifyFormat("class X {\n"
- " @property() private isReply = false;\n"
- "}\n");
- }
- TEST_F(FormatTestJS, TypeAliases) {
- verifyFormat("type X = number;\n"
- "class C {}");
- verifyFormat("type X<Y> = Z<Y>;");
- verifyFormat("type X = {\n"
- " y: number\n"
- "};\n"
- "class C {}");
- verifyFormat("export type X = {\n"
- " a: string,\n"
- " b?: string,\n"
- "};\n");
- }
- TEST_F(FormatTestJS, TypeInterfaceLineWrapping) {
- const FormatStyle &Style = getGoogleJSStyleWithColumns(20);
- verifyFormat("type LongTypeIsReallyUnreasonablyLong =\n"
- " string;\n",
- "type LongTypeIsReallyUnreasonablyLong = string;\n",
- Style);
- verifyFormat(
- "interface AbstractStrategyFactoryProvider {\n"
- " a: number\n"
- "}\n",
- "interface AbstractStrategyFactoryProvider { a: number }\n",
- Style);
- }
- TEST_F(FormatTestJS, RemoveEmptyLinesInArrowFunctions) {
- verifyFormat("x = () => {\n"
- " foo();\n"
- "};\n",
- "x = () => {\n"
- "\n"
- " foo();\n"
- "\n"
- "};\n");
- }
- TEST_F(FormatTestJS, Modules) {
- verifyFormat("import SomeThing from 'some/module.js';");
- verifyFormat("import {X, Y} from 'some/module.js';");
- verifyFormat("import a, {X, Y} from 'some/module.js';");
- verifyFormat("import {X, Y,} from 'some/module.js';");
- verifyFormat("import {X as myLocalX, Y as myLocalY} from 'some/module.js';");
- // Ensure Automatic Semicolon Insertion does not break on "as\n".
- verifyFormat("import {X as myX} from 'm';", "import {X as\n"
- " myX} from 'm';");
- verifyFormat("import * as lib from 'some/module.js';");
- verifyFormat("var x = {import: 1};\nx.import = 2;");
- verifyFormat("export function fn() {\n"
- " return 'fn';\n"
- "}");
- verifyFormat("export function A() {}\n"
- "export default function B() {}\n"
- "export function C() {}");
- verifyFormat("export default () => {\n"
- " let x = 1;\n"
- " return x;\n"
- "}");
- verifyFormat("export const x = 12;");
- verifyFormat("export default class X {}");
- verifyFormat("export {X, Y} from 'some/module.js';");
- verifyFormat("export {X, Y,} from 'some/module.js';");
- verifyFormat("export {SomeVeryLongExport as X, "
- "SomeOtherVeryLongExport as Y} from 'some/module.js';");
- // export without 'from' is wrapped.
- verifyFormat("export let someRatherLongVariableName =\n"
- " someSurprisinglyLongVariable + someOtherRatherLongVar;");
- // ... but not if from is just an identifier.
- verifyFormat("export {\n"
- " from as from,\n"
- " someSurprisinglyLongVariable as\n"
- " from\n"
- "};",
- getGoogleJSStyleWithColumns(20));
- verifyFormat("export class C {\n"
- " x: number;\n"
- " y: string;\n"
- "}");
- verifyFormat("export class X {\n"
- " y: number;\n"
- "}");
- verifyFormat("export abstract class X {\n"
- " y: number;\n"
- "}");
- verifyFormat("export default class X {\n"
- " y: number\n"
- "}");
- verifyFormat("export default function() {\n return 1;\n}");
- verifyFormat("export var x = 12;");
- verifyFormat("class C {}\n"
- "export function f() {}\n"
- "var v;");
- verifyFormat("export var x: number = 12;");
- verifyFormat("export const y = {\n"
- " a: 1,\n"
- " b: 2\n"
- "};");
- verifyFormat("export enum Foo {\n"
- " BAR,\n"
- " // adsdasd\n"
- " BAZ\n"
- "}");
- verifyFormat("export default [\n"
- " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa,\n"
- " bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb\n"
- "];");
- verifyFormat("export default [];");
- verifyFormat("export default () => {};");
- verifyFormat("export interface Foo {\n"
- " foo: number;\n"
- "}\n"
- "export class Bar {\n"
- " blah(): string {\n"
- " return this.blah;\n"
- " };\n"
- "}");
- }
- TEST_F(FormatTestJS, ImportWrapping) {
- verifyFormat("import {VeryLongImportsAreAnnoying, VeryLongImportsAreAnnoying,"
- " VeryLongImportsAreAnnoying, VeryLongImportsAreAnnoying"
- "} from 'some/module.js';");
- FormatStyle Style = getGoogleJSStyleWithColumns(80);
- Style.JavaScriptWrapImports = true;
- verifyFormat("import {\n"
- " VeryLongImportsAreAnnoying,\n"
- " VeryLongImportsAreAnnoying,\n"
- " VeryLongImportsAreAnnoying,\n"
- "} from 'some/module.js';",
- Style);
- verifyFormat("import {\n"
- " A,\n"
- " A,\n"
- "} from 'some/module.js';",
- Style);
- verifyFormat("export {\n"
- " A,\n"
- " A,\n"
- "} from 'some/module.js';",
- Style);
- Style.ColumnLimit = 40;
- // Using this version of verifyFormat because test::messUp hides the issue.
- verifyFormat("import {\n"
- " A,\n"
- "} from\n"
- " 'some/path/longer/than/column/limit/module.js';",
- " import { \n"
- " A, \n"
- " } from\n"
- " 'some/path/longer/than/column/limit/module.js' ; ",
- Style);
- }
- TEST_F(FormatTestJS, TemplateStrings) {
- // Keeps any whitespace/indentation within the template string.
- verifyFormat("var x = `hello\n"
- " ${name}\n"
- " !`;",
- "var x = `hello\n"
- " ${ name }\n"
- " !`;");
- verifyFormat("var x =\n"
- " `hello ${world}` >= some();",
- getGoogleJSStyleWithColumns(34)); // Barely doesn't fit.
- verifyFormat("var x = `hello ${world}` >= some();",
- getGoogleJSStyleWithColumns(35)); // Barely fits.
- verifyFormat("var x = `hellö ${wörld}` >= söme();",
- getGoogleJSStyleWithColumns(35)); // Fits due to UTF-8.
- verifyFormat("var x = `hello\n"
- " ${world}` >=\n"
- " some();",
- "var x =\n"
- " `hello\n"
- " ${world}` >= some();",
- getGoogleJSStyleWithColumns(21)); // Barely doesn't fit.
- verifyFormat("var x = `hello\n"
- " ${world}` >= some();",
- "var x =\n"
- " `hello\n"
- " ${world}` >= some();",
- getGoogleJSStyleWithColumns(22)); // Barely fits.
- verifyFormat("var x =\n"
- " `h`;",
- getGoogleJSStyleWithColumns(11));
- verifyFormat("var x =\n `multi\n line`;", "var x = `multi\n line`;",
- getGoogleJSStyleWithColumns(13));
- verifyFormat("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa(\n"
- " `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa`);");
- // Repro for an obscure width-miscounting issue with template strings.
- verifyFormat(
- "someLongVariable =\n"
- " "
- "`${logPrefix[11]}/${logPrefix[12]}/${logPrefix[13]}${logPrefix[14]}`;",
- "someLongVariable = "
- "`${logPrefix[11]}/${logPrefix[12]}/${logPrefix[13]}${logPrefix[14]}`;");
- // Make sure template strings get a proper ColumnWidth assigned, even if they
- // are first token in line.
- verifyFormat(
- "var a = aaaaaaaaaaaaaaaaaaaaaaaaaaaa ||\n"
- " `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa`;");
- // Two template strings.
- verifyFormat("var x = `hello` == `hello`;");
- // Comments in template strings.
- verifyFormat("var x = `//a`;\n"
- "var y;",
- "var x =\n `//a`;\n"
- "var y ;");
- verifyFormat("var x = `/*a`;\n"
- "var y;",
- "var x =\n `/*a`;\n"
- "var y;");
- // Unterminated string literals in a template string.
- verifyFormat("var x = `'`; // comment with matching quote '\n"
- "var y;");
- verifyFormat("var x = `\"`; // comment with matching quote \"\n"
- "var y;");
- verifyFormat("it(`'aaaaaaaaaaaaaaa `, aaaaaaaaa);",
- "it(`'aaaaaaaaaaaaaaa `, aaaaaaaaa) ;",
- getGoogleJSStyleWithColumns(40));
- // Backticks in a comment - not a template string.
- verifyFormat("var x = 1 // `/*a`;\n"
- " ;",
- "var x =\n 1 // `/*a`;\n"
- " ;");
- verifyFormat("/* ` */ var x = 1; /* ` */", "/* ` */ var x\n= 1; /* ` */");
- // Comment spans multiple template strings.
- verifyFormat("var x = `/*a`;\n"
- "var y = ` */ `;",
- "var x =\n `/*a`;\n"
- "var y =\n ` */ `;");
- // Escaped backtick.
- verifyFormat("var x = ` \\` a`;\n"
- "var y;",
- "var x = ` \\` a`;\n"
- "var y;");
- // Escaped dollar.
- verifyFormat("var x = ` \\${foo}`;\n");
- // The token stream can contain two string_literals in sequence, but that
- // doesn't mean that they are implicitly concatenated in JavaScript.
- verifyFormat("var f = `aaaa ${a ? 'a' : 'b'}`;");
- // Ensure that scopes are appropriately set around evaluated expressions in
- // template strings.
- verifyFormat("var f = `aaaaaaaaaaaaa:${aaaaaaa.aaaaa} aaaaaaaa\n"
- " aaaaaaaaaaaaa:${aaaaaaa.aaaaa} aaaaaaaa`;",
- "var f = `aaaaaaaaaaaaa:${aaaaaaa. aaaaa} aaaaaaaa\n"
- " aaaaaaaaaaaaa:${ aaaaaaa. aaaaa} aaaaaaaa`;");
- verifyFormat("var x = someFunction(`${})`) //\n"
- " .oooooooooooooooooon();");
- verifyFormat("var x = someFunction(`${aaaa}${\n"
- " aaaaa( //\n"
- " aaaaa)})`);");
- }
- TEST_F(FormatTestJS, TemplateStringMultiLineExpression) {
- verifyFormat("var f = `aaaaaaaaaaaaaaaaaa: ${\n"
- " aaaaa + //\n"
- " bbbb}`;",
- "var f = `aaaaaaaaaaaaaaaaaa: ${aaaaa + //\n"
- " bbbb}`;");
- verifyFormat("var f = `\n"
- " aaaaaaaaaaaaaaaaaa: ${\n"
- " aaaaa + //\n"
- " bbbb}`;",
- "var f = `\n"
- " aaaaaaaaaaaaaaaaaa: ${ aaaaa + //\n"
- " bbbb }`;");
- verifyFormat("var f = `\n"
- " aaaaaaaaaaaaaaaaaa: ${\n"
- " someFunction(\n"
- " aaaaa + //\n"
- " bbbb)}`;",
- "var f = `\n"
- " aaaaaaaaaaaaaaaaaa: ${someFunction (\n"
- " aaaaa + //\n"
- " bbbb)}`;");
- // It might be preferable to wrap before "someFunction".
- verifyFormat("var f = `\n"
- " aaaaaaaaaaaaaaaaaa: ${someFunction({\n"
- " aaaa: aaaaa,\n"
- " bbbb: bbbbb,\n"
- "})}`;",
- "var f = `\n"
- " aaaaaaaaaaaaaaaaaa: ${someFunction ({\n"
- " aaaa: aaaaa,\n"
- " bbbb: bbbbb,\n"
- " })}`;");
- }
- TEST_F(FormatTestJS, TemplateStringASI) {
- verifyFormat("var x = `hello${world}`;", "var x = `hello${\n"
- " world\n"
- "}`;");
- }
- TEST_F(FormatTestJS, NestedTemplateStrings) {
- verifyFormat(
- "var x = `<ul>${xs.map(x => `<li>${x}</li>`).join('\\n')}</ul>`;");
- verifyFormat("var x = `he${({text: 'll'}.text)}o`;");
- // Crashed at some point.
- verifyFormat("}");
- }
- TEST_F(FormatTestJS, TaggedTemplateStrings) {
- verifyFormat("var x = html`<ul>`;");
- verifyFormat("yield `hello`;");
- }
- TEST_F(FormatTestJS, CastSyntax) {
- verifyFormat("var x = <type>foo;");
- verifyFormat("var x = foo as type;");
- verifyFormat("let x = (a + b) as\n"
- " LongTypeIsLong;",
- getGoogleJSStyleWithColumns(20));
- verifyFormat("foo = <Bar[]>[\n"
- " 1, //\n"
- " 2\n"
- "];");
- verifyFormat("var x = [{x: 1} as type];");
- verifyFormat("x = x as [a, b];");
- verifyFormat("x = x as {a: string};");
- verifyFormat("x = x as (string);");
- verifyFormat("x = x! as (string);");
- verifyFormat("x = y! in z;");
- verifyFormat("var x = something.someFunction() as\n"
- " something;",
- getGoogleJSStyleWithColumns(40));
- }
- TEST_F(FormatTestJS, TypeArguments) {
- verifyFormat("class X<Y> {}");
- verifyFormat("new X<Y>();");
- verifyFormat("foo<Y>(a);");
- verifyFormat("var x: X<Y>[];");
- verifyFormat("class C extends D<E> implements F<G>, H<I> {}");
- verifyFormat("function f(a: List<any> = null) {}");
- verifyFormat("function f(): List<any> {}");
- verifyFormat("function aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa():\n"
- " bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb {}");
- verifyFormat("function aaaaaaaaaa(\n"
- " aaaaaaaaaaaaaaaa: aaaaaaaaaaaaaaaaaaa,\n"
- " aaaaaaaaaaaaaaaa: aaaaaaaaaaaaaaaaaaa):\n"
- " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa {}");
- }
- TEST_F(FormatTestJS, UserDefinedTypeGuards) {
- verifyFormat(
- "function foo(check: Object):\n"
- " check is {foo: string, bar: string, baz: string, foobar: string} {\n"
- " return 'bar' in check;\n"
- "}\n");
- }
- TEST_F(FormatTestJS, OptionalTypes) {
- verifyFormat("function x(a?: b, c?, d?) {}");
- verifyFormat("class X {\n"
- " y?: z;\n"
- " z?;\n"
- "}");
- verifyFormat("interface X {\n"
- " y?(): z;\n"
- "}");
- verifyFormat("constructor({aa}: {\n"
- " aa?: string,\n"
- " aaaaaaaa?: string,\n"
- " aaaaaaaaaaaaaaa?: boolean,\n"
- " aaaaaa?: List<string>\n"
- "}) {}");
- }
- TEST_F(FormatTestJS, IndexSignature) {
- verifyFormat("var x: {[k: string]: v};");
- }
- TEST_F(FormatTestJS, WrapAfterParen) {
- verifyFormat("xxxxxxxxxxx(\n"
- " aaa, aaa);",
- getGoogleJSStyleWithColumns(20));
- verifyFormat("xxxxxxxxxxx(\n"
- " aaa, aaa, aaa,\n"
- " aaa, aaa, aaa);",
- getGoogleJSStyleWithColumns(20));
- verifyFormat("xxxxxxxxxxx(\n"
- " aaaaaaaaaaaaaaaaaaaaaaaa,\n"
- " function(x) {\n"
- " y(); //\n"
- " });",
- getGoogleJSStyleWithColumns(40));
- verifyFormat("while (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa &&\n"
- " bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb) {\n}");
- }
- TEST_F(FormatTestJS, JSDocAnnotations) {
- verifyFormat("/**\n"
- " * @export {this.is.a.long.path.to.a.Type}\n"
- " */",
- "/**\n"
- " * @export {this.is.a.long.path.to.a.Type}\n"
- " */",
- getGoogleJSStyleWithColumns(20));
- verifyFormat("/**\n"
- " * @mods {this.is.a.long.path.to.a.Type}\n"
- " */",
- "/**\n"
- " * @mods {this.is.a.long.path.to.a.Type}\n"
- " */",
- getGoogleJSStyleWithColumns(20));
- verifyFormat("/**\n"
- " * @param {this.is.a.long.path.to.a.Type}\n"
- " */",
- "/**\n"
- " * @param {this.is.a.long.path.to.a.Type}\n"
- " */",
- getGoogleJSStyleWithColumns(20));
- verifyFormat("/**\n"
- " * @see http://very/very/long/url/is/long\n"
- " */",
- "/**\n"
- " * @see http://very/very/long/url/is/long\n"
- " */",
- getGoogleJSStyleWithColumns(20));
- verifyFormat(
- "/**\n"
- " * @param This is a\n"
- " * long comment but\n"
- " * no type\n"
- " */",
- "/**\n"
- " * @param This is a long comment but no type\n"
- " */",
- getGoogleJSStyleWithColumns(20));
- // Don't break @param line, but reindent it and reflow unrelated lines.
- verifyFormat("{\n"
- " /**\n"
- " * long long long\n"
- " * long\n"
- " * @param {this.is.a.long.path.to.a.Type} a\n"
- " * long long long\n"
- " * long long\n"
- " */\n"
- " function f(a) {}\n"
- "}",
- "{\n"
- "/**\n"
- " * long long long long\n"
- " * @param {this.is.a.long.path.to.a.Type} a\n"
- " * long long long long\n"
- " * long\n"
- " */\n"
- " function f(a) {}\n"
- "}",
- getGoogleJSStyleWithColumns(20));
- }
- TEST_F(FormatTestJS, RequoteStringsSingle) {
- verifyFormat("var x = 'foo';", "var x = \"foo\";");
- verifyFormat("var x = 'fo\\'o\\'';", "var x = \"fo'o'\";");
- verifyFormat("var x = 'fo\\'o\\'';", "var x = \"fo\\'o'\";");
- verifyFormat(
- "var x =\n"
- " 'foo\\'';",
- // Code below is 15 chars wide, doesn't fit into the line with the
- // \ escape added.
- "var x = \"foo'\";", getGoogleJSStyleWithColumns(15));
- // Removes no-longer needed \ escape from ".
- verifyFormat("var x = 'fo\"o';", "var x = \"fo\\\"o\";");
- // Code below fits into 15 chars *after* removing the \ escape.
- verifyFormat("var x = 'fo\"o';", "var x = \"fo\\\"o\";",
- getGoogleJSStyleWithColumns(15));
- verifyFormat("// clang-format off\n"
- "let x = \"double\";\n"
- "// clang-format on\n"
- "let x = 'single';\n",
- "// clang-format off\n"
- "let x = \"double\";\n"
- "// clang-format on\n"
- "let x = \"single\";\n");
- }
- TEST_F(FormatTestJS, RequoteAndIndent) {
- verifyFormat("let x = someVeryLongFunctionThatGoesOnAndOn(\n"
- " 'double quoted string that needs wrapping');",
- "let x = someVeryLongFunctionThatGoesOnAndOn("
- "\"double quoted string that needs wrapping\");");
- verifyFormat("let x =\n"
- " 'foo\\'oo';\n"
- "let x =\n"
- " 'foo\\'oo';",
- "let x=\"foo'oo\";\n"
- "let x=\"foo'oo\";",
- getGoogleJSStyleWithColumns(15));
- }
- TEST_F(FormatTestJS, RequoteStringsDouble) {
- FormatStyle DoubleQuotes = getGoogleStyle(FormatStyle::LK_JavaScript);
- DoubleQuotes.JavaScriptQuotes = FormatStyle::JSQS_Double;
- verifyFormat("var x = \"foo\";", DoubleQuotes);
- verifyFormat("var x = \"foo\";", "var x = 'foo';", DoubleQuotes);
- verifyFormat("var x = \"fo'o\";", "var x = 'fo\\'o';", DoubleQuotes);
- }
- TEST_F(FormatTestJS, RequoteStringsLeave) {
- FormatStyle LeaveQuotes = getGoogleStyle(FormatStyle::LK_JavaScript);
- LeaveQuotes.JavaScriptQuotes = FormatStyle::JSQS_Leave;
- verifyFormat("var x = \"foo\";", LeaveQuotes);
- verifyFormat("var x = 'foo';", LeaveQuotes);
- }
- TEST_F(FormatTestJS, SupportShebangLines) {
- verifyFormat("#!/usr/bin/env node\n"
- "var x = hello();",
- "#!/usr/bin/env node\n"
- "var x = hello();");
- }
- TEST_F(FormatTestJS, NonNullAssertionOperator) {
- verifyFormat("let x = foo!.bar();\n");
- verifyFormat("let x = foo ? bar! : baz;\n");
- verifyFormat("let x = !foo;\n");
- verifyFormat("let x = foo[0]!;\n");
- verifyFormat("let x = (foo)!;\n");
- verifyFormat("let x = x(foo!);\n");
- verifyFormat(
- "a.aaaaaa(a.a!).then(\n"
- " x => x(x));\n",
- getGoogleJSStyleWithColumns(20));
- verifyFormat("let x = foo! - 1;\n");
- verifyFormat("let x = {foo: 1}!;\n");
- verifyFormat(
- "let x = hello.foo()!\n"
- " .foo()!\n"
- " .foo()!\n"
- " .foo()!;\n",
- getGoogleJSStyleWithColumns(20));
- verifyFormat("let x = namespace!;\n");
- verifyFormat("return !!x;\n");
- }
- TEST_F(FormatTestJS, Conditional) {
- verifyFormat("y = x ? 1 : 2;");
- verifyFormat("x ? 1 : 2;");
- verifyFormat("class Foo {\n"
- " field = true ? 1 : 2;\n"
- " method(a = true ? 1 : 2) {}\n"
- "}");
- }
- TEST_F(FormatTestJS, ImportComments) {
- verifyFormat("import {x} from 'x'; // from some location",
- getGoogleJSStyleWithColumns(25));
- verifyFormat("// taze: x from 'location'", getGoogleJSStyleWithColumns(10));
- verifyFormat("/// <reference path=\"some/location\" />", getGoogleJSStyleWithColumns(10));
- }
- TEST_F(FormatTestJS, Exponentiation) {
- verifyFormat("squared = x ** 2;");
- verifyFormat("squared **= 2;");
- }
- TEST_F(FormatTestJS, NestedLiterals) {
- FormatStyle FourSpaces = getGoogleJSStyleWithColumns(15);
- FourSpaces.IndentWidth = 4;
- verifyFormat("var l = [\n"
- " [\n"
- " 1,\n"
- " ],\n"
- "];", FourSpaces);
- verifyFormat("var l = [\n"
- " {\n"
- " 1: 1,\n"
- " },\n"
- "];", FourSpaces);
- verifyFormat("someFunction(\n"
- " p1,\n"
- " [\n"
- " 1,\n"
- " ],\n"
- ");", FourSpaces);
- verifyFormat("someFunction(\n"
- " p1,\n"
- " {\n"
- " 1: 1,\n"
- " },\n"
- ");", FourSpaces);
- verifyFormat("var o = {\n"
- " 1: 1,\n"
- " 2: {\n"
- " 3: 3,\n"
- " },\n"
- "};", FourSpaces);
- verifyFormat("var o = {\n"
- " 1: 1,\n"
- " 2: [\n"
- " 3,\n"
- " ],\n"
- "};", FourSpaces);
- }
- TEST_F(FormatTestJS, BackslashesInComments) {
- verifyFormat("// hello \\\n"
- "if (x) foo();\n",
- "// hello \\\n"
- " if ( x) \n"
- " foo();\n");
- verifyFormat("/* ignore \\\n"
- " */\n"
- "if (x) foo();\n",
- "/* ignore \\\n"
- " */\n"
- " if ( x) foo();\n");
- verifyFormat("// st \\ art\\\n"
- "// comment"
- "// continue \\\n"
- "formatMe();\n",
- "// st \\ art\\\n"
- "// comment"
- "// continue \\\n"
- "formatMe( );\n");
- }
- } // end namespace tooling
- } // end namespace clang
|