Package org.structr.core.property

Source Code of org.structr.core.property.LongPropertyTest

/**
* Copyright (C) 2010-2014 Morgner UG (haftungsbeschränkt)
*
* This file is part of Structr <http://structr.org>.
*
* Structr is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* Structr is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Structr.  If not, see <http://www.gnu.org/licenses/>.
*/
package org.structr.core.property;

import org.structr.common.StructrTest;
import org.structr.common.error.FrameworkException;
import org.structr.core.Result;
import org.structr.core.entity.TestFour;
import org.structr.core.entity.TestOne;
import org.structr.core.entity.OneFourOneToOne;
import org.structr.core.graph.Tx;

/**
*
* @author Christian Morgner
*/
public class LongPropertyTest extends StructrTest {
 
  public void test() {
   
    try {

      final Property<Long> instance = TestFour.longProperty;
      final TestFour testEntity     = createTestNode(TestFour.class);

      assertNotNull(testEntity);

      // store long in the test entitiy
      final Long value = 2857312362L;

      try (final Tx tx = app.tx()) {
       
        instance.setProperty(securityContext, testEntity, value);
        tx.success();
      }

      try (final Tx tx = app.tx()) {
       
        // check value from database
        assertEquals(value, instance.getProperty(securityContext, testEntity, true));
      }
     
    } catch (FrameworkException fex) {
     
      fail("Unable to store array");
    }
  }
 
  public void testSimpleSearchOnNode() {
   
    try {

      final PropertyMap properties  = new PropertyMap();
      final PropertyKey<Long> key = TestFour.longProperty;
     
      properties.put(key, 2857312362L);
     
      final TestFour testEntity     = createTestNode(TestFour.class, properties);
     
      assertNotNull(testEntity);

      try (final Tx tx = app.tx()) {
       
        // check value from database
        assertEquals((Long)2857312362L, (Long)testEntity.getProperty(key));

        Result<TestFour> result = app.nodeQuery(TestFour.class).and(key, 2857312362L).getResult();

        assertEquals(1, result.size());
        assertEquals(testEntity, result.get(0));
      }
   
    } catch (FrameworkException fex) {
     
      fail("Unable to store array");
    }
   
  }
 
  public void testSimpleSearchOnRelationship() {
   
    try {

      final TestOne testOne        = createTestNode(TestOne.class);
      final TestFour testFour      = createTestNode(TestFour.class);
      final Property<Long> key = OneFourOneToOne.longProperty;
     
      assertNotNull(testOne);
      assertNotNull(testFour);
     
      final OneFourOneToOne testEntity = createTestRelationship(testOne, testFour, OneFourOneToOne.class);
     
      assertNotNull(testEntity);

      try (final Tx tx = app.tx()) {
       
        testEntity.setProperty(key, 2857312362L);
        tx.success();
      }

      try (final Tx tx = app.tx()) {
       
        // check value from database
        assertEquals((Long)2857312362L, (Long)testEntity.getProperty(key));

        Result<OneFourOneToOne> result = app.relationshipQuery(OneFourOneToOne.class).and(key, 2857312362L).getResult();

        assertEquals(1, result.size());
        assertEquals(testEntity, result.get(0));
      }
   
    } catch (FrameworkException fex) {
     
      fail("Unable to store array");
    }
  }
}
TOP

Related Classes of org.structr.core.property.LongPropertyTest

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.