Search in sources :

Example 11 with Productions

use of org.whole.lang.grammars.model.Productions in project whole by wholeplatform.

the class IteratorFactoryTest method testChildReverseIteratorAdd.

@Test
public void testChildReverseIteratorAdd() {
    Grammar g = new TestXmlGrammar().create();
    Productions productions = g.getPhraseStructure();
    int size = productions.wSize();
    int count = 0;
    Production pAdded1 = null;
    Production pAdded2 = null;
    IEntityIterator<Production> i = IteratorFactory.<Production>childReverseIterator();
    i.reset(productions);
    while (i.hasNext()) {
        Production p = i.next();
        assertNotSame(pAdded1, p);
        assertNotSame(pAdded2, p);
        count++;
        if (count == 1)
            i.add(pAdded1 = GrammarsEntityFactory.instance.createProduction());
        if (count == 3) {
            i.add(pAdded1 = GrammarsEntityFactory.instance.createProduction());
            i.add(pAdded2 = GrammarsEntityFactory.instance.createProduction());
        }
    }
    assertEquals(size, count);
    assertEquals(size + 3, productions.wSize());
}
Also used : Productions(org.whole.lang.grammars.model.Productions) TestXmlGrammar(org.whole.lang.grammars.util.TestXmlGrammar) Production(org.whole.lang.grammars.model.Production) TestXmlGrammar(org.whole.lang.grammars.util.TestXmlGrammar) Grammar(org.whole.lang.grammars.model.Grammar) Test(org.junit.Test)

Example 12 with Productions

use of org.whole.lang.grammars.model.Productions in project whole by wholeplatform.

the class IteratorFactoryTest method testChildScannerIteratorAdd.

@Test
public void testChildScannerIteratorAdd() {
    Grammar g = new TestXmlGrammar().create();
    Productions productions = g.getPhraseStructure();
    int size = productions.wSize();
    int count = 0;
    Production pAdded1 = null;
    Production pAdded2 = null;
    IEntityIterator<Production> i = IteratorFactory.<Production>childScannerIterator();
    i.reset(productions);
    while (i.hasNext()) {
        Production p = i.next();
        assertNotSame(pAdded1, p);
        assertNotSame(pAdded2, p);
        count++;
        if (count == 1)
            i.add(pAdded1 = GrammarsEntityFactory.instance.createProduction());
        if (count == 3) {
            i.add(pAdded1 = GrammarsEntityFactory.instance.createProduction());
            i.add(pAdded2 = GrammarsEntityFactory.instance.createProduction());
        }
    }
    assertEquals(size, count);
    assertEquals(size + 3, productions.wSize());
}
Also used : Productions(org.whole.lang.grammars.model.Productions) TestXmlGrammar(org.whole.lang.grammars.util.TestXmlGrammar) Production(org.whole.lang.grammars.model.Production) TestXmlGrammar(org.whole.lang.grammars.util.TestXmlGrammar) Grammar(org.whole.lang.grammars.model.Grammar) Test(org.junit.Test)

Example 13 with Productions

use of org.whole.lang.grammars.model.Productions in project whole by wholeplatform.

the class IteratorFactoryTest method testFollowingSiblingIterator.

@Test
public void testFollowingSiblingIterator() {
    Grammar g = new TestXmlGrammar().create();
    Productions productions = g.getPhraseStructure();
    int index = 0;
    IEntityIterator<Production> ci = IteratorFactory.<Production>childIterator();
    ci.reset(productions);
    while (ci.hasNext()) {
        Production p = ci.next();
        IEntityIterator<Production> fi = IteratorFactory.<Production>followingSiblingIterator();
        fi.reset(p);
        int findex = ++index;
        for (Production fp : fi) assertSame(productions.wGet(findex++), fp);
    }
    for (int i = 0; i < g.wSize(); i++) {
        IEntityIterator<IEntity> fi = IteratorFactory.<IEntity>followingSiblingIterator();
        fi.reset(g.wGet(i));
        for (int j = i + 1; j < g.wSize(); j++) assertSame(g.wGet(j), fi.next());
    }
    for (int i = 0; i < productions.wSize(); i++) {
        IEntityIterator<Production> fi = IteratorFactory.<Production>followingSiblingIterator();
        fi.reset(productions.wGet(i));
        for (int j = i + 1; j < productions.wSize(); j++) assertSame(productions.wGet(j), fi.next());
    }
}
Also used : Productions(org.whole.lang.grammars.model.Productions) IEntity(org.whole.lang.model.IEntity) TestXmlGrammar(org.whole.lang.grammars.util.TestXmlGrammar) Production(org.whole.lang.grammars.model.Production) TestXmlGrammar(org.whole.lang.grammars.util.TestXmlGrammar) Grammar(org.whole.lang.grammars.model.Grammar) Test(org.junit.Test)

Example 14 with Productions

use of org.whole.lang.grammars.model.Productions in project whole by wholeplatform.

the class IteratorFactoryTest method testChildIterator.

@Test
public void testChildIterator() {
    Grammar g = new TestXmlGrammar().create();
    Productions productions = g.getPhraseStructure();
    int index = 0;
    IEntityIterator<Production> ci = IteratorFactory.<Production>childIterator();
    ci.reset(productions);
    while (ci.hasNext()) {
        Production p = ci.next();
        assertSame(productions.wGet(index++), p);
    }
    index = 0;
    ci = IteratorFactory.<Production>childScannerIterator();
    ci.reset(productions);
    while (ci.hasNext()) {
        Production p = ci.next();
        assertSame(productions.wGet(index++), p);
    }
    index = 0;
    ci = IteratorFactory.<Production>childMatcherIterator().withPattern(GrammarsEntityDescriptorEnum.Production);
    ci.reset(productions);
    while (ci.hasNext()) {
        Production p = ci.next();
        assertSame(productions.wGet(index++), p);
    }
}
Also used : Productions(org.whole.lang.grammars.model.Productions) TestXmlGrammar(org.whole.lang.grammars.util.TestXmlGrammar) Production(org.whole.lang.grammars.model.Production) TestXmlGrammar(org.whole.lang.grammars.util.TestXmlGrammar) Grammar(org.whole.lang.grammars.model.Grammar) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)14 Grammar (org.whole.lang.grammars.model.Grammar)14 Productions (org.whole.lang.grammars.model.Productions)14 TestXmlGrammar (org.whole.lang.grammars.util.TestXmlGrammar)14 Production (org.whole.lang.grammars.model.Production)13 IEntity (org.whole.lang.model.IEntity)4 NonTerminal (org.whole.lang.grammars.model.NonTerminal)2 ArrayList (java.util.ArrayList)1 HashSet (java.util.HashSet)1 IBindingManager (org.whole.lang.bindings.IBindingManager)1 ClasspathPersistenceProvider (org.whole.lang.codebase.ClasspathPersistenceProvider)1 QueriesGrammar (org.whole.lang.grammars.codebase.QueriesGrammar)1 Type (org.whole.lang.models.model.Type)1 PathExpression (org.whole.lang.queries.model.PathExpression)1 ITemplateManager (org.whole.lang.templates.ITemplateManager)1 GenericIdentityVisitor (org.whole.lang.visitors.GenericIdentityVisitor)1 IVisitor (org.whole.lang.visitors.IVisitor)1