Package org.sonar.server.db.migrations.v43

Source Code of org.sonar.server.db.migrations.v43.WorkDurationConvertorTest

/*
* SonarQube, open source software quality management tool.
* Copyright (C) 2008-2014 SonarSource
* mailto:contact AT sonarsource DOT com
*
* SonarQube 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 3 of the License, or (at your option) any later version.
*
* SonarQube 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 program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
*/

package org.sonar.server.db.migrations.v43;

import org.junit.Test;
import org.sonar.core.properties.PropertiesDao;
import org.sonar.core.properties.PropertyDto;

import static org.fest.assertions.Assertions.assertThat;
import static org.fest.assertions.Fail.fail;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

public class WorkDurationConvertorTest {

  static final int HOURS_IN_DAY = 8;
  static final Long ONE_MINUTE = 1L;
  static final Long ONE_HOUR_IN_MINUTES = ONE_MINUTE * 60;
  static final Long ONE_DAY_IN_MINUTES = ONE_HOUR_IN_MINUTES * HOURS_IN_DAY;

  PropertiesDao propertiesDao = mock(PropertiesDao.class);

  WorkDurationConvertor convertor = new WorkDurationConvertor(propertiesDao);

  @Test
  public void convert_from_long() throws Exception {
    convertor.init();
    when(propertiesDao.selectGlobalProperty(WorkDurationConvertor.HOURS_IN_DAY_PROPERTY)).thenReturn(new PropertyDto().setValue(Integer.toString(HOURS_IN_DAY)));

    assertThat(convertor.createFromLong(1)).isEqualTo(ONE_MINUTE);
    assertThat(convertor.createFromLong(100)).isEqualTo(ONE_HOUR_IN_MINUTES);
    assertThat(convertor.createFromLong(10000)).isEqualTo(ONE_DAY_IN_MINUTES);
    assertThat(convertor.createFromLong(10101)).isEqualTo(ONE_DAY_IN_MINUTES + ONE_HOUR_IN_MINUTES + ONE_MINUTE);
  }

  @Test
  public void convert_from_long_use_default_value_for_hours_in_day_when_no_property() throws Exception {
    convertor.init();
    assertThat(convertor.createFromLong(1)).isEqualTo(ONE_MINUTE);
  }

  @Test
  public void fail_convert_from_long_on_bad_hours_in_day_property() throws Exception {
    when(propertiesDao.selectGlobalProperty(WorkDurationConvertor.HOURS_IN_DAY_PROPERTY)).thenReturn(new PropertyDto().setValue("-2"));
    WorkDurationConvertor workDurationConvertor = new WorkDurationConvertor(propertiesDao);
    try {
      workDurationConvertor.init();
      fail();
    } catch (Exception e) {
      assertThat(e).isInstanceOf(IllegalArgumentException.class);
    }
  }

  @Test
  public void convert_from_days() throws Exception {
    convertor.init();
    when(propertiesDao.selectGlobalProperty(WorkDurationConvertor.HOURS_IN_DAY_PROPERTY)).thenReturn(new PropertyDto().setValue(Integer.toString(HOURS_IN_DAY)));

    assertThat(convertor.createFromDays(1.0)).isEqualTo(ONE_DAY_IN_MINUTES);
    assertThat(convertor.createFromDays(0.1)).isEqualTo(48L);

    // Should be 4.8 but as it's a long it's truncated after comma
    assertThat(convertor.createFromDays(0.01)).isEqualTo(4L);
  }

  @Test
  public void fail_it_init_has_not_been_called() throws Exception {
    when(propertiesDao.selectGlobalProperty(WorkDurationConvertor.HOURS_IN_DAY_PROPERTY)).thenReturn(new PropertyDto().setValue(Integer.toString(HOURS_IN_DAY)));

    try {
      assertThat(convertor.createFromLong(1L));
      fail();
    } catch (Exception e) {
      assertThat(e).isInstanceOf(IllegalStateException.class);
    }

    try {
      assertThat(convertor.createFromDays(1.0));
      fail();
    } catch (Exception e) {
      assertThat(e).isInstanceOf(IllegalStateException.class);
    }
  }

}
TOP

Related Classes of org.sonar.server.db.migrations.v43.WorkDurationConvertorTest

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.