Package org.auraframework.impl.expression

Source Code of org.auraframework.impl.expression.PropertyReferenceImplTest

/*
* Copyright (C) 2013 salesforce.com, inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*         http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.auraframework.impl.expression;

import java.util.List;

import org.auraframework.expression.PropertyReference;
import org.auraframework.system.Location;
import org.auraframework.test.UnitTestCase;

/**
* expressiony test
*/
public class PropertyReferenceImplTest extends UnitTestCase {

    public PropertyReferenceImplTest(String name) {
        super(name);
    }

    public void testExpression() throws Exception {
        Location loc = new Location("expressionism", 456);
        PropertyReferenceImpl pr = new PropertyReferenceImpl("test.yo.self", loc);
        assertSame(loc, pr.getLocation());
        assertEquals("root was not correct", "test", pr.getRoot());
        assertEquals(3, pr.size());
        List<String> l = pr.getList();
        assertEquals("test", l.get(0));
        assertEquals("yo", l.get(1));
        assertEquals("self", l.get(2));
        PropertyReference pr2 = pr.getStem();
        assertSame(loc, pr2.getLocation());
        assertEquals("root was not correct", "yo", pr2.getRoot());
        PropertyReference pr3 = pr2.getStem();
        assertSame(loc, pr3.getLocation());
        assertEquals("root was not correct", "self", pr3.getRoot());
        assertEquals(1, pr3.size());
    }

    public void testSimpleExpression() throws Exception {
        Location loc = new Location("expressionism", 92);
        PropertyReferenceImpl pr = new PropertyReferenceImpl("inohaveanydots", loc);
        assertSame(loc, pr.getLocation());
        assertEquals("root was not correct", "inohaveanydots", pr.getRoot());
        assertEquals(1, pr.size());
        assertNull("stem should have been null", pr.getStem());
    }

    public void testToString() throws Exception {
        Location loc = new Location("expressionism", 92);
        PropertyReferenceImpl pr = new PropertyReferenceImpl("test.yo.self", loc);
        assertEquals("{!test.yo.self}", pr.toString(true));
        assertEquals("test.yo.self", pr.toString());
    }
}
TOP

Related Classes of org.auraframework.impl.expression.PropertyReferenceImplTest

TOP
Copyright © 2018 www.massapi.com. 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.