Package org.teiid.dqp.internal.process

Source Code of org.teiid.dqp.internal.process.TestDQPWorkContext

/*
* JBoss, Home of Professional Open Source.
* See the COPYRIGHT.txt file distributed with this work for information
* regarding copyright ownership.  Some portions may be licensed
* to Red Hat, Inc. under one or more contributor license agreements.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*/

package org.teiid.dqp.internal.process;

import java.util.Map;

import org.mockito.Mockito;
import org.teiid.adminapi.DataPolicy;
import org.teiid.adminapi.impl.DataPolicyMetadata;
import org.teiid.adminapi.impl.SessionMetadata;
import org.teiid.adminapi.impl.VDBMetaData;
import org.teiid.core.util.UnitTestUtil;

import junit.framework.TestCase;


public class TestDQPWorkContext extends TestCase {

  /**
   * Constructor for TestRequestMessage.
   *
   * @param name
   */
  public TestDQPWorkContext(String name) {
    super(name);
  }

  public static DQPWorkContext example() {
    DQPWorkContext message = new DQPWorkContext();
    message.getSession().setVDBName("vdbName"); //$NON-NLS-1$
    message.getSession().setVDBVersion(1);
    message.getSession().setApplicationName("querybuilder"); //$NON-NLS-1$
    message.getSession().setSessionId(String.valueOf(5));
    message.getSession().setUserName("userName"); //$NON-NLS-1$
    return message;
  }

  public void testSerialize() throws Exception {
    DQPWorkContext copy = UnitTestUtil.helpSerialize(example());

    assertEquals("5", copy.getSessionId()); //$NON-NLS-1$
    assertEquals("userName", copy.getUserName()); //$NON-NLS-1$
    assertEquals("vdbName", copy.getVdbName()); //$NON-NLS-1$
    assertEquals(1, copy.getVdbVersion());
    assertEquals("querybuilder", copy.getAppName()); //$NON-NLS-1$
  }

 
  public void testClearPolicies() {
    DQPWorkContext message = new DQPWorkContext();
    message.setSession(Mockito.mock(SessionMetadata.class));
    Mockito.stub(message.getSession().getVdb()).toReturn(new VDBMetaData());
    Map<String, DataPolicy> map = message.getAllowedDataPolicies();
    map.put("role", Mockito.mock(DataPolicy.class)); //$NON-NLS-1$
    assertFalse(map.isEmpty());
   
    message.setSession(Mockito.mock(SessionMetadata.class));
    Mockito.stub(message.getSession().getVdb()).toReturn(new VDBMetaData());
    map = message.getAllowedDataPolicies();
    assertTrue(map.isEmpty());
  }
 
  public void testAnyAuthenticated() {
    DQPWorkContext message = new DQPWorkContext();
    message.setSession(Mockito.mock(SessionMetadata.class));
    VDBMetaData vdb = new VDBMetaData();
    DataPolicyMetadata dpm = new DataPolicyMetadata();
    dpm.setAnyAuthenticated(true);
    vdb.addDataPolicy(dpm);
    Mockito.stub(message.getSession().getVdb()).toReturn(vdb);
   
    Map<String, DataPolicy> map = message.getAllowedDataPolicies();
    assertEquals(1, map.size());
  }
}
TOP

Related Classes of org.teiid.dqp.internal.process.TestDQPWorkContext

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.