/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * 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. */ package com.liferay.asset.util.test; import com.liferay.arquillian.extension.junit.bridge.junit.Arquillian; import com.liferay.asset.kernel.model.AssetVocabulary; import com.liferay.asset.kernel.service.AssetVocabularyLocalServiceUtil; import com.liferay.portal.kernel.model.Company; import com.liferay.portal.kernel.model.Group; import com.liferay.portal.kernel.service.CompanyLocalServiceUtil; import com.liferay.portal.kernel.service.ServiceContext; import com.liferay.portal.kernel.test.rule.AggregateTestRule; import com.liferay.portal.kernel.test.rule.DeleteAfterTestRun; import com.liferay.portal.kernel.test.util.GroupTestUtil; import com.liferay.portal.kernel.test.util.ServiceContextTestUtil; import com.liferay.portal.kernel.test.util.TestPropsValues; import com.liferay.portal.kernel.util.LocaleUtil; import com.liferay.portal.test.rule.LiferayIntegrationTestRule; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import org.junit.Assert; import org.junit.Before; import org.junit.ClassRule; import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; /** * @author Eduardo Garcia */ @RunWith(Arquillian.class) public class AssetVocabularyUtilTest { @ClassRule @Rule public static final AggregateTestRule aggregateTestRule = new LiferayIntegrationTestRule(); @Before public void setUp() throws Exception { _group = GroupTestUtil.addGroup(); Map<Locale, String> titleMap = new HashMap<>(); titleMap.put(_LOCALE, _TITLE); ServiceContext serviceContext = ServiceContextTestUtil.getServiceContext( _group.getGroupId(), TestPropsValues.getUserId()); _vocabulary = AssetVocabularyLocalServiceUtil.addVocabulary( TestPropsValues.getUserId(), _group.getGroupId(), _TITLE, titleMap, null, null, serviceContext); Company company = CompanyLocalServiceUtil.getCompany( _group.getCompanyId()); _companyGroup = company.getGroup(); serviceContext = ServiceContextTestUtil.getServiceContext( _companyGroup.getGroupId(), TestPropsValues.getUserId()); _companyVocabulary = AssetVocabularyLocalServiceUtil.addVocabulary( TestPropsValues.getUserId(), _companyGroup.getGroupId(), _TITLE, titleMap, null, null, serviceContext); } @Test public void testGetUnambiguousVocabularyTitleWithAmbiguity() throws Exception { List<AssetVocabulary> vocabularies = new ArrayList<>(); vocabularies.add(_companyVocabulary); vocabularies.add(_vocabulary); String unambiguousCompanyVocabularyTitle = _companyVocabulary.getUnambiguousTitle( vocabularies, _group.getGroupId(), _LOCALE); Assert.assertTrue( unambiguousCompanyVocabularyTitle.contains( _companyGroup.getDescriptiveName(_LOCALE))); String unambiguousVocabularyTitle = _vocabulary.getUnambiguousTitle( vocabularies, _group.getGroupId(), _LOCALE); Assert.assertEquals(_TITLE, unambiguousVocabularyTitle); } @Test public void testGetUnambiguousVocabularyTitleWithoutAmbiguity() throws Exception { List<AssetVocabulary> vocabularies = new ArrayList<>(); vocabularies.add(_companyVocabulary); String unambiguousCompanyVocabularyTitle = _companyVocabulary.getUnambiguousTitle( vocabularies, _group.getGroupId(), _LOCALE); Assert.assertEquals(_TITLE, unambiguousCompanyVocabularyTitle); } private static final Locale _LOCALE = LocaleUtil.US; private static final String _TITLE = "Test Vocabulary"; private Group _companyGroup; @DeleteAfterTestRun private AssetVocabulary _companyVocabulary; @DeleteAfterTestRun private Group _group; private AssetVocabulary _vocabulary; }