Search in sources :

Example 6 with IDList

use of org.eclipse.xtext.formatting2.internal.formattertestlanguage.IDList in project xtext-core by eclipse.

the class FormatterReplacementsTest method testUndefinedIdentityEditsAreNotFiltered.

@Test
public void testUndefinedIdentityEditsAreNotFiltered() {
    final GenericFormatter<IDList> _function = new GenericFormatter<IDList>() {

        @Override
        protected void format(final IDList model, @Extension final ITextRegionExtensions regions, @Extension final IFormattableDocument document) {
            final Consumer<ISemanticRegion> _function = (ISemanticRegion it) -> {
                final Procedure1<IHiddenRegionFormatter> _function_1 = (IHiddenRegionFormatter it_1) -> {
                    it_1.setSpace("");
                };
                document.prepend(it, _function_1);
            };
            regions.regionFor(model).ruleCallsTo(FormatterReplacementsTest.this._formatterTestLanguageGrammarAccess.getIDRule()).forEach(_function);
        }
    };
    final GenericFormatter<IDList> formatter = _function;
    IDList _createIDList = this.fact.createIDList();
    final Procedure1<IDList> _function_1 = (IDList it) -> {
        EList<String> _ids = it.getIds();
        _ids.add("a");
    };
    final IDList model = ObjectExtensions.<IDList>operator_doubleArrow(_createIDList, _function_1);
    Resource _createResource = this.resFact.createResource(URI.createURI("foo.ext"));
    final Procedure1<Resource> _function_2 = (Resource it) -> {
        EList<Resource> _resources = new XtextResourceSet().getResources();
        _resources.add(it);
        EList<EObject> _contents = it.getContents();
        _contents.add(model);
    };
    ObjectExtensions.<Resource>operator_doubleArrow(_createResource, _function_2);
    final FormatterRequest request = this.requestProvider.get();
    request.setAllowIdentityEdits(false);
    request.setTextRegionAccess(this.serializer.serializeToRegions(model));
    final List<ITextReplacement> replacements = formatter.format(request);
    final Function1<ITextReplacement, String> _function_3 = (ITextReplacement it) -> {
        StringConcatenation _builder = new StringConcatenation();
        _builder.append("\"");
        String _text = it.getText();
        _builder.append(_text);
        _builder.append("\" -> \"");
        String _replacementText = it.getReplacementText();
        _builder.append(_replacementText);
        _builder.append("\"");
        _builder.append("\n");
        return _builder.toString();
    };
    final String actual = IterableExtensions.join(ListExtensions.<ITextReplacement, String>map(replacements, _function_3));
    StringConcatenation _builder = new StringConcatenation();
    _builder.append("\"\" -> \"\"");
    _builder.newLine();
    _builder.append("\"\" -> \"\"");
    _builder.newLine();
    _builder.append("\"\" -> \"\"");
    _builder.newLine();
    final String expected = _builder.toString();
    Assert.assertEquals(expected, actual);
}
Also used : IHiddenRegionFormatter(org.eclipse.xtext.formatting2.IHiddenRegionFormatter) ITextReplacement(org.eclipse.xtext.formatting2.regionaccess.ITextReplacement) IFormattableDocument(org.eclipse.xtext.formatting2.IFormattableDocument) XtextResource(org.eclipse.xtext.resource.XtextResource) Resource(org.eclipse.emf.ecore.resource.Resource) IDList(org.eclipse.xtext.formatting2.internal.formattertestlanguage.IDList) ITextRegionExtensions(org.eclipse.xtext.formatting2.regionaccess.ITextRegionExtensions) Extension(org.eclipse.xtext.xbase.lib.Extension) GenericFormatter(org.eclipse.xtext.formatting2.internal.GenericFormatter) EList(org.eclipse.emf.common.util.EList) XtextResourceSet(org.eclipse.xtext.resource.XtextResourceSet) Procedure1(org.eclipse.xtext.xbase.lib.Procedures.Procedure1) StringConcatenation(org.eclipse.xtend2.lib.StringConcatenation) ISemanticRegion(org.eclipse.xtext.formatting2.regionaccess.ISemanticRegion) FormatterRequest(org.eclipse.xtext.formatting2.FormatterRequest) Test(org.junit.Test)

Example 7 with IDList

use of org.eclipse.xtext.formatting2.internal.formattertestlanguage.IDList in project xtext-core by eclipse.

the class FormatterReplacementsTest method testIdentityEditsAreFiltered.

@Test
public void testIdentityEditsAreFiltered() {
    try {
        final GenericFormatter<IDList> _function = new GenericFormatter<IDList>() {

            @Override
            protected void format(final IDList model, @Extension final ITextRegionExtensions regions, @Extension final IFormattableDocument document) {
                final Consumer<ISemanticRegion> _function = (ISemanticRegion it) -> {
                    final Procedure1<IHiddenRegionFormatter> _function_1 = (IHiddenRegionFormatter it_1) -> {
                        it_1.autowrap();
                        it_1.oneSpace();
                    };
                    document.prepend(it, _function_1);
                };
                regions.regionFor(model).ruleCallsTo(FormatterReplacementsTest.this._formatterTestLanguageGrammarAccess.getIDRule()).forEach(_function);
            }
        };
        final GenericFormatter<IDList> formatter = _function;
        final IDList parsed = this.parseHelper.parse("idlist  aaa bbb");
        final FormatterRequest request = this.requestProvider.get();
        request.setAllowIdentityEdits(false);
        Resource _eResource = parsed.eResource();
        request.setTextRegionAccess(this.regionBuilder.forNodeModel(((XtextResource) _eResource)).create());
        final List<ITextReplacement> replacements = formatter.format(request);
        final Function1<ITextReplacement, String> _function_1 = (ITextReplacement it) -> {
            StringConcatenation _builder = new StringConcatenation();
            _builder.append("\"");
            String _text = it.getText();
            _builder.append(_text);
            _builder.append("\" -> \"");
            String _replacementText = it.getReplacementText();
            _builder.append(_replacementText);
            _builder.append("\"");
            _builder.append("\n");
            return _builder.toString();
        };
        final String actual = IterableExtensions.join(ListExtensions.<ITextReplacement, String>map(replacements, _function_1));
        StringConcatenation _builder = new StringConcatenation();
        _builder.append("\"  \" -> \" \"");
        _builder.newLine();
        final String expected = _builder.toString();
        Assert.assertEquals(expected, actual);
    } catch (Throwable _e) {
        throw Exceptions.sneakyThrow(_e);
    }
}
Also used : IHiddenRegionFormatter(org.eclipse.xtext.formatting2.IHiddenRegionFormatter) ITextReplacement(org.eclipse.xtext.formatting2.regionaccess.ITextReplacement) IFormattableDocument(org.eclipse.xtext.formatting2.IFormattableDocument) XtextResource(org.eclipse.xtext.resource.XtextResource) Resource(org.eclipse.emf.ecore.resource.Resource) XtextResource(org.eclipse.xtext.resource.XtextResource) IDList(org.eclipse.xtext.formatting2.internal.formattertestlanguage.IDList) ITextRegionExtensions(org.eclipse.xtext.formatting2.regionaccess.ITextRegionExtensions) Extension(org.eclipse.xtext.xbase.lib.Extension) GenericFormatter(org.eclipse.xtext.formatting2.internal.GenericFormatter) Procedure1(org.eclipse.xtext.xbase.lib.Procedures.Procedure1) StringConcatenation(org.eclipse.xtend2.lib.StringConcatenation) ISemanticRegion(org.eclipse.xtext.formatting2.regionaccess.ISemanticRegion) FormatterRequest(org.eclipse.xtext.formatting2.FormatterRequest) Test(org.junit.Test)

Example 8 with IDList

use of org.eclipse.xtext.formatting2.internal.formattertestlanguage.IDList in project xtext-core by eclipse.

the class FormatterSerializerIntegrationTest method testFormatterIntegrationWithSerializer.

@Test
public void testFormatterIntegrationWithSerializer() {
    try {
        final Resource resource = this.factory.createResource(URI.createURI("dummy.ext"));
        new ResourceSetImpl().getResources().add(resource);
        final IDList model = FormattertestlanguageFactory.eINSTANCE.createIDList();
        EList<String> _ids = model.getIds();
        _ids.add("foo");
        EList<EObject> _contents = resource.getContents();
        _contents.add(model);
        final ByteArrayOutputStream out = new ByteArrayOutputStream();
        BufferedOutputStream _bufferedOutputStream = new BufferedOutputStream(out);
        resource.save(_bufferedOutputStream, Collections.<Object, Object>emptyMap());
        Assert.assertEquals("idlist  foo", out.toString());
    } catch (Throwable _e) {
        throw Exceptions.sneakyThrow(_e);
    }
}
Also used : ResourceSetImpl(org.eclipse.emf.ecore.resource.impl.ResourceSetImpl) EObject(org.eclipse.emf.ecore.EObject) XtextResource(org.eclipse.xtext.resource.XtextResource) Resource(org.eclipse.emf.ecore.resource.Resource) ByteArrayOutputStream(java.io.ByteArrayOutputStream) IDList(org.eclipse.xtext.formatting2.internal.formattertestlanguage.IDList) BufferedOutputStream(java.io.BufferedOutputStream) Test(org.junit.Test)

Example 9 with IDList

use of org.eclipse.xtext.formatting2.internal.formattertestlanguage.IDList in project xtext-core by eclipse.

the class FormattingConflictTest method enableDebugTracingFalse.

@Test
public void enableDebugTracingFalse() {
    final Wrapper<Throwable> wrapper = new Wrapper<Throwable>();
    final Wrapper<Integer> execution = new Wrapper<Integer>(Integer.valueOf(0));
    final Procedure1<GenericFormatterTestRequest> _function = (GenericFormatterTestRequest it) -> {
        StringConcatenation _builder = new StringConcatenation();
        _builder.append("idlist a");
        _builder.newLine();
        it.setToBeFormatted(_builder);
        final GenericFormatter<IDList> _function_1 = new GenericFormatter<IDList>() {

            @Override
            protected void format(final IDList model, @Extension final ITextRegionExtensions regions, @Extension final IFormattableDocument document) {
                Integer _get = execution.get();
                int _plus = ((_get).intValue() + 1);
                execution.set(Integer.valueOf(_plus));
                final Procedure1<IHiddenRegionFormatter> _function = (IHiddenRegionFormatter it_1) -> {
                    it_1.setSpace(" ");
                };
                document.append(regions.regionFor(model).keyword("idlist"), _function);
                final Procedure1<IHiddenRegionFormatter> _function_1 = (IHiddenRegionFormatter it_1) -> {
                    it_1.setSpace("\t");
                };
                document.append(regions.regionFor(model).keyword("idlist"), _function_1);
            }
        };
        it.setFormatter(_function_1);
        FormatterRequest _request = it.getRequest();
        _request.setEnableDebugTracing(false);
        FormatterRequest _request_1 = it.getRequest();
        final IAcceptor<Exception> _function_2 = (Exception e) -> {
            wrapper.set(e);
        };
        _request_1.setExceptionHandler(_function_2);
    };
    this._genericFormatterTester.assertFormatted(_function);
    Throwable _get = wrapper.get();
    final ConflictingRegionsException exception = ((ConflictingRegionsException) _get);
    Assert.assertEquals(2, (execution.get()).intValue());
    Assert.assertEquals(2, exception.getTraces().size());
}
Also used : Wrapper(org.eclipse.xtext.util.Wrapper) GenericFormatterTestRequest(org.eclipse.xtext.formatting2.internal.GenericFormatterTestRequest) IHiddenRegionFormatter(org.eclipse.xtext.formatting2.IHiddenRegionFormatter) IFormattableDocument(org.eclipse.xtext.formatting2.IFormattableDocument) IDList(org.eclipse.xtext.formatting2.internal.formattertestlanguage.IDList) ITextRegionExtensions(org.eclipse.xtext.formatting2.regionaccess.ITextRegionExtensions) ConflictingRegionsException(org.eclipse.xtext.formatting2.internal.ConflictingRegionsException) ConflictingRegionsException(org.eclipse.xtext.formatting2.internal.ConflictingRegionsException) GenericFormatter(org.eclipse.xtext.formatting2.internal.GenericFormatter) Procedure1(org.eclipse.xtext.xbase.lib.Procedures.Procedure1) StringConcatenation(org.eclipse.xtend2.lib.StringConcatenation) IAcceptor(org.eclipse.xtext.util.IAcceptor) FormatterRequest(org.eclipse.xtext.formatting2.FormatterRequest) Test(org.junit.Test)

Example 10 with IDList

use of org.eclipse.xtext.formatting2.internal.formattertestlanguage.IDList in project xtext-core by eclipse.

the class FormattingConflictTest method enableDebugTracingTrue.

@Test
public void enableDebugTracingTrue() {
    final Wrapper<Throwable> wrapper = new Wrapper<Throwable>();
    final Wrapper<Integer> execution = new Wrapper<Integer>(Integer.valueOf(0));
    final Procedure1<GenericFormatterTestRequest> _function = (GenericFormatterTestRequest it) -> {
        StringConcatenation _builder = new StringConcatenation();
        _builder.append("idlist a");
        _builder.newLine();
        it.setToBeFormatted(_builder);
        final GenericFormatter<IDList> _function_1 = new GenericFormatter<IDList>() {

            @Override
            protected void format(final IDList model, @Extension final ITextRegionExtensions regions, @Extension final IFormattableDocument document) {
                Integer _get = execution.get();
                int _plus = ((_get).intValue() + 1);
                execution.set(Integer.valueOf(_plus));
                final Procedure1<IHiddenRegionFormatter> _function = (IHiddenRegionFormatter it_1) -> {
                    it_1.setSpace(" ");
                };
                document.append(regions.regionFor(model).keyword("idlist"), _function);
                final Procedure1<IHiddenRegionFormatter> _function_1 = (IHiddenRegionFormatter it_1) -> {
                    it_1.setSpace("\t");
                };
                document.append(regions.regionFor(model).keyword("idlist"), _function_1);
            }
        };
        it.setFormatter(_function_1);
        FormatterRequest _request = it.getRequest();
        _request.setEnableDebugTracing(true);
        FormatterRequest _request_1 = it.getRequest();
        final IAcceptor<Exception> _function_2 = (Exception e) -> {
            wrapper.set(e);
        };
        _request_1.setExceptionHandler(_function_2);
    };
    this._genericFormatterTester.assertFormatted(_function);
    Throwable _get = wrapper.get();
    final ConflictingRegionsException exception = ((ConflictingRegionsException) _get);
    Assert.assertEquals(1, (execution.get()).intValue());
    Assert.assertEquals(2, exception.getTraces().size());
}
Also used : Wrapper(org.eclipse.xtext.util.Wrapper) GenericFormatterTestRequest(org.eclipse.xtext.formatting2.internal.GenericFormatterTestRequest) IHiddenRegionFormatter(org.eclipse.xtext.formatting2.IHiddenRegionFormatter) IFormattableDocument(org.eclipse.xtext.formatting2.IFormattableDocument) IDList(org.eclipse.xtext.formatting2.internal.formattertestlanguage.IDList) ITextRegionExtensions(org.eclipse.xtext.formatting2.regionaccess.ITextRegionExtensions) ConflictingRegionsException(org.eclipse.xtext.formatting2.internal.ConflictingRegionsException) ConflictingRegionsException(org.eclipse.xtext.formatting2.internal.ConflictingRegionsException) GenericFormatter(org.eclipse.xtext.formatting2.internal.GenericFormatter) Procedure1(org.eclipse.xtext.xbase.lib.Procedures.Procedure1) StringConcatenation(org.eclipse.xtend2.lib.StringConcatenation) IAcceptor(org.eclipse.xtext.util.IAcceptor) FormatterRequest(org.eclipse.xtext.formatting2.FormatterRequest) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)16 StringConcatenation (org.eclipse.xtend2.lib.StringConcatenation)15 IFormattableDocument (org.eclipse.xtext.formatting2.IFormattableDocument)15 GenericFormatter (org.eclipse.xtext.formatting2.internal.GenericFormatter)15 IDList (org.eclipse.xtext.formatting2.internal.formattertestlanguage.IDList)15 ITextRegionExtensions (org.eclipse.xtext.formatting2.regionaccess.ITextRegionExtensions)15 IHiddenRegionFormatter (org.eclipse.xtext.formatting2.IHiddenRegionFormatter)13 GenericFormatterTestRequest (org.eclipse.xtext.formatting2.internal.GenericFormatterTestRequest)13 Procedure1 (org.eclipse.xtext.xbase.lib.Procedures.Procedure1)13 FormatterRequest (org.eclipse.xtext.formatting2.FormatterRequest)4 Collection (java.util.Collection)3 EObject (org.eclipse.emf.ecore.EObject)3 Resource (org.eclipse.emf.ecore.resource.Resource)3 ISemanticRegion (org.eclipse.xtext.formatting2.regionaccess.ISemanticRegion)3 XtextResource (org.eclipse.xtext.resource.XtextResource)3 ITextRegion (org.eclipse.xtext.util.ITextRegion)3 TextRegion (org.eclipse.xtext.util.TextRegion)3 ConflictingRegionsException (org.eclipse.xtext.formatting2.internal.ConflictingRegionsException)2 ITextReplacement (org.eclipse.xtext.formatting2.regionaccess.ITextReplacement)2 IAcceptor (org.eclipse.xtext.util.IAcceptor)2