blob: 6f467e5fa04b3948fe3f2b283ef6ea99c22fbe9b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.qi4j.api;
import org.junit.Assert;
import org.junit.Test;
import org.qi4j.api.activation.ActivationException;
import org.qi4j.api.composite.Composite;
import org.qi4j.api.entity.EntityBuilder;
import org.qi4j.api.entity.EntityComposite;
import org.qi4j.api.property.Property;
import org.qi4j.api.query.QueryBuilder;
import org.qi4j.api.query.QueryExpressions;
import org.qi4j.api.unitofwork.UnitOfWork;
import org.qi4j.api.unitofwork.UnitOfWorkCompletionException;
import org.qi4j.api.value.ValueComposite;
import org.qi4j.bootstrap.AssemblyException;
import org.qi4j.bootstrap.ModuleAssembly;
import org.qi4j.bootstrap.SingletonAssembler;
import org.qi4j.functional.Iterables;
import org.qi4j.functional.Specification;
import org.qi4j.test.EntityTestAssembler;
/**
* TODO
*/
public class OperatorsTest
{
@Test
public void testOperators()
throws UnitOfWorkCompletionException, ActivationException, AssemblyException
{
SingletonAssembler assembler = new SingletonAssembler()
{
@Override
public void assemble( ModuleAssembly module )
throws AssemblyException
{
new EntityTestAssembler().assemble( module );
module.entities( TestEntity.class );
module.values( TestValue.class );
module.forMixin( TestEntity.class ).declareDefaults().foo().set( "Bar" );
module.forMixin( TestValue.class ).declareDefaults().bar().set( "Xyz" );
}
};
UnitOfWork uow = assembler.module().newUnitOfWork();
try
{
EntityBuilder<TestEntity> entityBuilder = uow.newEntityBuilder( TestEntity.class, "123" );
entityBuilder.instance().value().set( assembler.module().newValue( TestValue.class ) );
TestEntity testEntity = entityBuilder.newInstance();
uow.complete();
uow = assembler.module().newUnitOfWork();
Iterable<TestEntity> entities = Iterables.iterable( testEntity = uow.get( testEntity ) );
QueryBuilder<TestEntity> builder = assembler.module().newQueryBuilder( TestEntity.class );
{
Specification<Composite> where = QueryExpressions.eq( QueryExpressions.templateFor( TestEntity.class )
.foo(), "Bar" );
Assert.assertTrue( where.satisfiedBy( testEntity ) );
System.out.println( where );
}
{
Specification<Composite> where = QueryExpressions.eq( QueryExpressions.templateFor( TestEntity.class )
.value()
.get()
.bar(), "Xyz" );
Assert.assertTrue( where.satisfiedBy( testEntity ) );
System.out.println( where );
Assert.assertTrue( builder.where( where ).newQuery( entities ).find().equals( testEntity ) );
}
}
finally
{
uow.discard();
}
}
public interface TestEntity
extends EntityComposite
{
Property<String> foo();
Property<TestValue> value();
}
public interface TestValue
extends ValueComposite
{
Property<String> bar();
}
}