# # This file is part of pretix (Community Edition). # # Copyright (C) 2014-2020 Raphael Michel and contributors # Copyright (C) 2020-today pretix GmbH and contributors # # This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General # Public License as published by the Free Software Foundation in version 3 of the License. # # ADDITIONAL TERMS APPLY: Pursuant to Section 7 of the GNU Affero General Public License, additional terms are # applicable granting you additional permissions and placing additional restrictions on your usage of this software. # Please refer to the pretix LICENSE file to obtain the full terms applicable to this work. If you did not receive # this file, see . # # This program 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 Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along with this program. If not, see # . # # This file is based on an earlier version of pretix which was released under the Apache License 2.0. The full text of # the Apache License 2.0 can be obtained at . # # This file may have since been changed and any changes are released under the terms of AGPLv3 as described above. A # full history of changes and contributors is available at . # # This file contains Apache-licensed contributions copyrighted by: Alvaro Enrique Ruano # # Unless required by applicable law or agreed to in writing, software distributed under the Apache License 2.0 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. from datetime import date, datetime from django.utils import translation from pretix.base.i18n import language from pretix.helpers.daterange import daterange, datetimerange def test_same_day_german(): with translation.override('de'): df = date(2003, 2, 1) assert daterange(df, df) == "Sa, 1. Februar 2003" assert daterange(df, df, as_html=True) == '' def test_same_day_english(): with translation.override('en'): df = date(2003, 2, 1) assert daterange(df, df) == "Sat, Feb. 1, 2003" assert daterange(df, df, as_html=True) == '' def test_same_day_spanish(): with translation.override('es'): df = date(2003, 2, 1) assert daterange(df, df) == "1 de febrero de 2003" assert daterange(df, df, as_html=True) == '' def test_same_day_other_lang(): with translation.override('tr'): df = date(2003, 2, 1) assert daterange(df, df) == '01 Şubat 2003' assert daterange(df, df, as_html=True) == '' def test_same_month_german(): with translation.override('de'): df = date(2003, 2, 1) dt = date(2003, 2, 3) assert daterange(df, dt) == "1.–3. Februar 2003" assert daterange(df, dt, as_html=True) == '' \ ' bis ' \ '' def test_same_month_english(): with translation.override('en'): df = date(2003, 2, 1) dt = date(2003, 2, 3) assert daterange(df, dt) == "Feb. 1 – 3, 2003" assert daterange(df, dt, as_html=True) == ' ' \ ' until ' \ '' def test_same_month_spanish(): with translation.override('es'): df = date(2003, 2, 1) dt = date(2003, 2, 3) assert daterange(df, dt) == "1 – 3 de febrero de 2003" assert daterange(df, dt, as_html=True) == ' ' \ ' hasta ' \ '' def test_same_year_german(): with translation.override('de'): df = date(2003, 2, 1) dt = date(2003, 4, 3) assert daterange(df, dt) == "1. Februar – 3. April 2003" assert daterange(df, dt, as_html=True) == ' ' \ ' bis ' \ '' def test_same_year_english(): with translation.override('en'): df = date(2003, 2, 1) dt = date(2003, 4, 3) assert daterange(df, dt) == "Feb. 1 – April 3, 2003" assert daterange(df, dt, as_html=True) == ' ' \ ' until ' \ '' def test_same_year_spanish(): with translation.override('es'): df = date(2003, 2, 1) dt = date(2003, 4, 3) assert daterange(df, dt) == "1 de febrero – 3 de abril de 2003" assert daterange(df, dt, as_html=True) == ' ' \ ' hasta ' \ '' def test_different_dates_german(): with translation.override('de'): df = date(2003, 2, 1) dt = date(2005, 4, 3) assert daterange(df, dt) == "1. Februar 2003 – 3. April 2005" assert daterange(df, dt, as_html=True) == ' ' \ ' bis ' \ '' def test_different_dates_english(): with translation.override('en'): df = date(2003, 2, 1) dt = date(2005, 4, 3) assert daterange(df, dt) == "Feb. 1, 2003 – April 3, 2005" assert daterange(df, dt, as_html=True) == ' ' \ ' until ' \ '' def test_different_dates_spanish(): with translation.override('es'): df = date(2003, 2, 1) dt = date(2005, 4, 3) assert daterange(df, dt) == "1 de febrero de 2003 – 3 de abril de 2005" assert daterange(df, dt, as_html=True) == ' ' \ ' hasta ' \ '' def test_different_dates_other_lang(): with translation.override('tr'): df = date(2003, 2, 1) dt = date(2005, 4, 3) assert daterange(df, dt) == "01 Şubat 2003 – 03 Nisan 2005" assert daterange(df, dt, as_html=True) == ' ' \ ' until ' \ '' def test_datetime_same_day(): with translation.override('de'): df = datetime(2003, 2, 1, 9, 0) dt = datetime(2003, 2, 1, 10, 0) assert datetimerange(df, dt) == "01.02.2003 09:00 – 10:00" assert datetimerange(df, dt, as_html=True) == ' ' \ ' bis ' \ '' with language('en', 'US'): df = datetime(2003, 2, 1, 9, 0) dt = datetime(2003, 2, 1, 10, 0) assert datetimerange(df, dt) == "02/01/2003 9 a.m. – 10 a.m." assert datetimerange(df, dt, as_html=True) == ' ' \ ' until ' \ '' def test_datetime_different_day(): with translation.override('de'): df = datetime(2003, 2, 1, 9, 0) dt = datetime(2003, 2, 2, 10, 0) assert datetimerange(df, dt) == "01.02.2003 09:00 – 02.02.2003 10:00" assert datetimerange(df, dt, as_html=True) == ' ' \ ' bis ' \ '' with language('en', 'US'): df = datetime(2003, 2, 1, 9, 0) dt = datetime(2003, 2, 2, 10, 0) assert datetimerange(df, dt) == "02/01/2003 9 a.m. – 02/02/2003 10 a.m." assert datetimerange(df, dt, as_html=True) == ' ' \ ' until ' \ ''