Package org.auraframework.def

Examples of org.auraframework.def.ComponentDefRef


                    + " is missing required attribute 'req'", inner.getQualifiedName());
        }
    }

    public void testEqualsWithDifferentLocations() {
        ComponentDefRef cdr1 = vendor.makeComponentDefRef();
        ComponentDefRef cdr2 = vendor.makeComponentDefRef(null, null, vendor.makeLocation("fakefile", 0, 0, 0));
        assertFalse("Equals should have returned false because locations are different", cdr1.equals(cdr2));
    }
View Full Code Here


        auratextAttr.put("value", "Grape Fruit");
        ComponentDefRefImpl.Builder builder = new ComponentDefRefImpl.Builder();
        builder.setDescriptor("markup://aura:text");

        builder.setAttribute("value", "Water Melon");
        ComponentDefRef grapeFruit = builder.build();

        builder.setAttribute("value", "Water Melon");
        ComponentDefRef waterMelon = builder.build();

        List<ComponentDefRef> cmps = Lists.newArrayList(grapeFruit, waterMelon);

        out.append("<div id='placeholder' class='placeholder' style='border: 1px solid black'/>");
View Full Code Here

    }

    @SuppressWarnings("unchecked")
    public void testReadAttributes() throws Exception {
        htmlHandler.readAttributes();
        ComponentDefRef cd = htmlHandler.createDefinition();
        Map<DefDescriptor<AttributeDef>, AttributeDefRef> attributes = (Map<DefDescriptor<AttributeDef>, AttributeDefRef>) cd
                .getAttributeDefRef("HTMLAttributes").getValue();
        assertEquals("MyClass", attributes.get(DefDescriptorImpl.getInstance("class", AttributeDef.class)));
    }
View Full Code Here

        assertTrue("HTMLComponentDefRefHandler should handle the div tag", htmlHandler.handlesTag("div"));
        assertFalse("HTMLComponentDefRefHandler should not handle a fakeHTMLTag", htmlHandler.handlesTag("fakeHTMLTag"));
    }

    public void testCreateDefinition() throws Exception {
        ComponentDefRef cd = htmlHandler.createDefinition();
        assertEquals("html", cd.getDescriptor().getName());
        assertEquals(2, cd.getAttributeValues().size());
        assertEquals("div", cd.getAttributeDefRef("tag").getValue());
    }
View Full Code Here

        assertEquals("mystring", ad.getName());
        assertEquals("Component[]", ad.getTypeDef().getName());
        assertTrue(ad.getDefaultValue().getValue() instanceof List);
        List<?> l = (List<?>) ad.getDefaultValue().getValue();
        assertEquals(1, l.size());
        ComponentDefRef cdr = (ComponentDefRef) l.get(0);
        AttributeDefRef adr = cdr.getAttributeDefRef("value");
        assertNotNull(adr);
        assertEquals("valid Text which is really a defref", adr.getValue());
    }
View Full Code Here

        cdrHandler = new ComponentDefRefHandler<>(cdh, xmlReader, source);
        cdrHandler.readAttributes();
    }

    public void testCreateDefinition() {
        ComponentDefRef cdr = cdrHandler.createDefinition();
        assertEquals("attr value", cdr.getAttributeDefRef("attr").getValue());
    }
View Full Code Here

    @SuppressWarnings("unchecked")
    public void testHandleChildText() throws Exception {
        xmlReader.next();
        cdrHandler.handleChildText();
        ComponentDefRef cdr = cdrHandler.createDefinition();
        ArrayList<ComponentDefRef> compDefs = (ArrayList<ComponentDefRef>) cdr.getAttributeDefRef(
                AttributeDefRefImpl.BODY_ATTRIBUTE_NAME).getValue();
        AttributeDefRef attDef = compDefs.get(0).getAttributeDefRef("value");
        assertEquals("Child Text", attDef.getValue());
    }
View Full Code Here

    @SuppressWarnings("unchecked")
    public void testHandleChildTag() throws Exception {
        xmlReader.next();
        xmlReader.next();
        cdrHandler.handleChildTag();
        ComponentDefRef cdr = cdrHandler.createDefinition();
        ArrayList<ComponentDefRef> compDefs = (ArrayList<ComponentDefRef>) cdr.getAttributeDefRef(
                AttributeDefRefImpl.BODY_ATTRIBUTE_NAME).getValue();
        assertEquals("foo", compDefs.get(0).getDescriptor().getName());
    }
View Full Code Here

        xmlReader.next();
        xmlReader.next();
        xmlReader.next();
        xmlReader.next();
        cdrHandler.handleChildTag();
        ComponentDefRef cdr = cdrHandler.createDefinition();
        ComponentDefRef value = (ComponentDefRef) ((List<?>) cdr.getAttributeDefRef("header").getValue()).get(0);
        assertEquals("Header Value", value.getAttributeDefRef("value").getValue());
    }
View Full Code Here

        assertNotNull(item);

        assertEquals("Failed to retrieve description of layout item", "layout item description", item.getDescription());
        List<ComponentDefRef> body = item.getBody();
        assertEquals(1, body.size());
        ComponentDefRef ref = body.get(0);
        assertEquals("markup://aura:html", ref.getDescriptor().getQualifiedName());
        assertEquals("inner", ref.getLocalId());
        Collection<?> htmlAttribs = ((HashMap<?, ?>) ref.getAttributeDefRef("HTMLAttributes").getValue()).values();
        assertEquals(1, htmlAttribs.size());
        assertEquals("self", htmlAttribs.toArray()[0]);
        assertNull(item.getCache());

        // Menu Layout
        LayoutDef menuLayout = layoutsDef.getLayoutDef("menu");
        assertNotNull(menuLayout);
        assertEquals("Menu layout was not specified any description.", null, menuLayout.getDescription());
        assertEquals(1, menuLayout.getLayoutItemDefs().size());

        item = menuLayout.getLayoutItemDef("content");
        assertNotNull(item);
        assertEquals("Content layout was not specified any description.", null, item.getDescription());
        body = item.getBody();
        assertEquals(1, body.size());
        ref = body.get(0);
        assertEquals("markup://ui:button", ref.getDescriptor().getQualifiedName());
        assertEquals("inner", ref.getLocalId());
        assertEquals("futile", ref.getAttributeDefRef("label").getValue());
        assertEquals("session", item.getCache());

    }
View Full Code Here

TOP

Related Classes of org.auraframework.def.ComponentDefRef

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.