Пример #1
0
def test_set_duration_field(view: View, window: MainWindow, model: Model):
    model._duration = timedelta()
    view.set_duration_field()
    assert window.duration_field.text() == '00:00:00'
    model._duration = timedelta(hours=36, minutes=24, seconds=12)
    view.set_duration_field()
    assert window.duration_field.text() == '36:24:12'
Пример #2
0
def test_set_categories(model: Model, model_mock_ttg: Mock):
    model.set_categories()
    #
    assert model.categories == ['', 'testing']
    model_mock_ttg.assert_called_once_with(
        google_sheets.get_categories,
        'abc123',
    )
    model_mock_ttg.return_value = Results.error, None
    model.set_categories()
    assert model.categories == []
Пример #3
0
def main():
    app = QtWidgets.QApplication([])

    success, journal, spreadsheet_id, name = login()

    if success:

        model = Model(journal, spreadsheet_id, name)

        window = MainWindow(model)
        window.show()

        sys.exit(app.exec_())
Пример #4
0
def test_sync(
    view: View, window: MainWindow, model: Model, model_mock_ttg: Mock
):
    model_mock_ttg.return_value = Results.success, ['a', 'b']
    model._semesters = ['Summer', 'Darkness']
    model.set_manual_hours(1)
    model.set_manual_minutes(2)
    model.set_manual_seconds(3)
    view.sync()
    sems = [
        window.semesters_cb.itemText(i)
        for i in range(window.semesters_cb.count())
    ]
    assert sems == ['Summer', 'Darkness']
    cats = [
        window.categories_cb.itemText(i)
        for i in range(window.categories_cb.count())
    ]
    assert cats == ['', 'a', 'b']
    assert window.hours_input.text() == '1'
    assert window.minutes_input.text() == '2'
    assert window.seconds_input.text() == '3'
    assert window.duration_field.text() == '00:00:00'
Пример #5
0
def test_manual_minutes(model: Model):
    assert model.manual_minutes == 0
    model._manual_minutes = 1
    assert model.manual_minutes == 1
Пример #6
0
def test_manual_hours(model: Model):
    assert model.manual_hours == 0
    model._manual_hours = 1
    assert model.manual_hours == 1
Пример #7
0
def test_category(model: Model):
    assert model.category is None
    model._categories = ['', 'a']
    assert model.category is None
    model._category_index = 1
    assert model.category == 'a'
Пример #8
0
def test_semester(model: Model):
    assert model.semester == 'Fall'
    model._semester_index = 1
    assert model.semester == 'Spring'
Пример #9
0
def test_set_manual_hours(model: Model):
    assert model.manual_hours == 0
    model.set_manual_hours(1)
    assert model.manual_hours == 1
Пример #10
0
def test_submit(model: Model, mocker: MockFixture):
    mock_ttg = mocker.patch('usc_lr_timer.model.talk_to_google.talk_to_google')
    mock_ttg.return_value = Results.success, None
    model._name = None
    assert model.submit(True) == SubmitResult(None, 'Name not chosen')
    model._name = 'Vincent'
    assert model.submit(True) == SubmitResult(None, 'Category not chosen')
    model._categories = ['', 'testing']
    model.set_category_index(1)
    model.set_manual_minutes(61)
    model.set_manual_seconds(61)
    result = SubmitResult(None, 'Minutes must be between 0 and 60')
    assert model.submit(True) == result
    model.set_manual_minutes(0)
    result = SubmitResult(None, 'Seconds must be between 0 and 60')
    assert model.submit(True) == result
    model.set_manual_seconds(0)
    assert model.submit(True) == SubmitResult(None, 'No time recorded')
    model.set_manual_seconds(42)
    assert model.submit(True) == SubmitResult(Results.success, None)
    mock_ttg.assert_called_with(
        google_sheets.add_time,
        spreadsheet_id='abc123',
        name='Vincent',
        semester='Fall',
        duration=timedelta(seconds=42),
        category='testing',
    )
    assert model.submit(False) == SubmitResult(None, 'No time recorded')
    model.increment_duration(24)
    assert model.submit(False) == SubmitResult(Results.success, None)
    mock_ttg.assert_called_with(
        google_sheets.add_time,
        spreadsheet_id='abc123',
        name='Vincent',
        semester='Fall',
        duration=timedelta(seconds=24),
        category='testing',
    )
Пример #11
0
def test_set_category_index(model: Model):
    model._categories = ['', 'a']
    assert model.category is None
    model.set_category_index(1)
    assert model.category == 'a'
Пример #12
0
def test_set_semester_index(model: Model):
    assert model.semester == 'Fall'
    model.set_semester_index(1)
    assert model.semester == 'Spring'
Пример #13
0
def test_set_manual_seconds(model: Model):
    assert model.manual_seconds == 0
    model.set_manual_seconds(1)
    assert model.manual_seconds == 1
Пример #14
0
def model(model_mock_ttg: Mock):
    model = Model('Law Review', 'abc123', 'Vincent')
    return model
Пример #15
0
def test_manual_seconds(model: Model):
    assert model.manual_seconds == 0
    model._manual_seconds = 1
    assert model.manual_seconds == 1
Пример #16
0
def test_manual_duration(model: Model):
    assert model.manual_duration == timedelta()
    model._manual_hours = 1
    model._manual_minutes = 1
    model._manual_seconds = 1
    assert model.manual_duration == timedelta(hours=1, minutes=1, seconds=1)
Пример #17
0
def test_increment_duration(model: Model):
    model.increment_duration(1)
    assert model.duration == timedelta(seconds=1)
    model.increment_duration(2)
    assert model.duration == timedelta(seconds=3)
Пример #18
0
def test_set_manual_minutes(model: Model):
    assert model.manual_minutes == 0
    model.set_manual_minutes(1)
    assert model.manual_minutes == 1
Пример #19
0
def test_reset_duration(model: Model):
    model._duration = timedelta(seconds=5)
    model.reset_duration()
    assert model.duration == timedelta()
Пример #20
0
def model(mock_talk_to_google: Mock):
    model = Model(JOURNAL, SHEET_ID, NAME)
    return model
Пример #21
0
def test_categories(model: Model):
    assert model.categories == []
    model._categories = ['a', 'b']
    assert model.categories == ['a', 'b']
    assert model.categories is not model._categories
    assert model.categories == model._categories