Skip to content

Commit

Permalink
fix: getScheduledNotifications() should take in DataSetNotificationTr…
Browse files Browse the repository at this point in the history
…igger (#15760)

* fix: getScheduledNotifications() should take in DataSetNotificationTrigger (#15752)

* code styles

* code style
  • Loading branch information
vietnguyen authored Nov 23, 2023
1 parent 6be9257 commit 1c706bf
Show file tree
Hide file tree
Showing 7 changed files with 117 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

import java.util.List;
import org.hisp.dhis.dataset.DataSet;
import org.hisp.dhis.program.notification.NotificationTrigger;

/** Created by [email protected] on 20.07.17. */
public interface DataSetNotificationTemplateService {
Expand All @@ -39,7 +38,7 @@ public interface DataSetNotificationTemplateService {

List<DataSetNotificationTemplate> getCompleteNotifications(DataSet dataSet);

List<DataSetNotificationTemplate> getScheduledNotifications(NotificationTrigger trigger);
List<DataSetNotificationTemplate> getScheduledNotifications(DataSetNotificationTrigger trigger);

List<DataSetNotificationTemplate> getAll();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,12 @@
import java.util.List;
import org.hisp.dhis.common.IdentifiableObjectStore;
import org.hisp.dhis.dataset.DataSet;
import org.hisp.dhis.program.notification.NotificationTrigger;

/** Created by [email protected] on 13.07.17. */
public interface DataSetNotificationTemplateStore
extends IdentifiableObjectStore<DataSetNotificationTemplate> {
List<DataSetNotificationTemplate> getNotificationsByTriggerType(
DataSet dataSet, DataSetNotificationTrigger trigger);

List<DataSetNotificationTemplate> getScheduledNotifications(NotificationTrigger trigger);
List<DataSetNotificationTemplate> getScheduledNotifications(DataSetNotificationTrigger trigger);
}
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
import org.hisp.dhis.program.message.ProgramMessage;
import org.hisp.dhis.program.message.ProgramMessageRecipients;
import org.hisp.dhis.program.message.ProgramMessageService;
import org.hisp.dhis.program.notification.NotificationTrigger;
import org.hisp.dhis.user.User;
import org.hisp.dhis.user.UserGroup;
import org.hisp.dhis.util.DateUtils;
Expand Down Expand Up @@ -188,7 +187,7 @@ public void sendScheduledDataSetNotificationsForDay(Date day) {
List<MessageBatch> batches = new ArrayList<>();

List<DataSetNotificationTemplate> scheduledTemplates =
dsntService.getScheduledNotifications(NotificationTrigger.SCHEDULED_DAYS_DUE_DATE);
dsntService.getScheduledNotifications(DataSetNotificationTrigger.SCHEDULED_DAYS);

if (scheduledTemplates == null || scheduledTemplates.isEmpty()) {
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

import java.util.List;
import org.hisp.dhis.dataset.DataSet;
import org.hisp.dhis.program.notification.NotificationTrigger;
import org.springframework.stereotype.Service;

/** Created by [email protected] on 20.07.17. */
Expand Down Expand Up @@ -63,7 +62,8 @@ public List<DataSetNotificationTemplate> getCompleteNotifications(DataSet dataSe
}

@Override
public List<DataSetNotificationTemplate> getScheduledNotifications(NotificationTrigger trigger) {
public List<DataSetNotificationTemplate> getScheduledNotifications(
DataSetNotificationTrigger trigger) {
return store.getScheduledNotifications(trigger);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
import org.hibernate.SessionFactory;
import org.hisp.dhis.common.hibernate.HibernateIdentifiableObjectStore;
import org.hisp.dhis.dataset.DataSet;
import org.hisp.dhis.program.notification.NotificationTrigger;
import org.hisp.dhis.security.acl.AclService;
import org.hisp.dhis.user.CurrentUserService;
import org.springframework.context.ApplicationEventPublisher;
Expand Down Expand Up @@ -73,7 +72,8 @@ public List<DataSetNotificationTemplate> getNotificationsByTriggerType(
}

@Override
public List<DataSetNotificationTemplate> getScheduledNotifications(NotificationTrigger trigger) {
public List<DataSetNotificationTemplate> getScheduledNotifications(
DataSetNotificationTrigger trigger) {
CriteriaBuilder builder = getCriteriaBuilder();

return getList(
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
/*
* Copyright (c) 2004-2023, University of Oslo
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* Neither the name of the HISP project nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.hisp.dhis.dataset.notifications;

import static org.junit.jupiter.api.Assertions.assertEquals;

import java.util.Set;
import org.hisp.dhis.TransactionalIntegrationTest;
import org.hisp.dhis.dataset.DataSet;
import org.hisp.dhis.dataset.DataSetStore;
import org.hisp.dhis.notification.SendStrategy;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;

class DataSetNotificationTemplateStoreTest extends TransactionalIntegrationTest {

@Autowired private DataSetNotificationTemplateStore store;
@Autowired private DataSetStore dataSetStore;

@Test
void testGetNotificationsByTriggerTypeAndDataSet() {
DataSet dataSet = createDataSet('A');
dataSetStore.save(dataSet);

DataSetNotificationTemplate template =
createDataSetNotificationTemplate(
"A",
DataSetNotificationRecipient.USER_GROUP,
DataSetNotificationTrigger.DATA_SET_COMPLETION,
1,
SendStrategy.SINGLE_NOTIFICATION);
template.setDataSets(Set.of(dataSet));
store.save(template);

assertEquals(
1,
store
.getNotificationsByTriggerType(dataSet, DataSetNotificationTrigger.DATA_SET_COMPLETION)
.size());
}

@Test
void testGetScheduledNotificationsValid() {
DataSetNotificationTemplate template =
createDataSetNotificationTemplate(
"A",
DataSetNotificationRecipient.USER_GROUP,
DataSetNotificationTrigger.DATA_SET_COMPLETION,
1,
SendStrategy.SINGLE_NOTIFICATION);
store.save(template);

Assertions.assertEquals(
1, store.getScheduledNotifications(DataSetNotificationTrigger.DATA_SET_COMPLETION).size());
}

@Test
void testGetScheduledNotificationsNotExist() {
DataSetNotificationTemplate template =
createDataSetNotificationTemplate(
"A",
DataSetNotificationRecipient.USER_GROUP,
DataSetNotificationTrigger.DATA_SET_COMPLETION,
1,
SendStrategy.SINGLE_NOTIFICATION);
store.save(template);

Assertions.assertEquals(
0, store.getScheduledNotifications(DataSetNotificationTrigger.SCHEDULED_DAYS).size());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2123,16 +2123,19 @@ public static DataSetNotificationTemplate createDataSetNotificationTemplate(
DataSetNotificationTrigger dataSetNotificationTrigger,
Integer relativeScheduledDays,
SendStrategy sendStrategy) {
return new DataSetNotificationTemplate(
Sets.newHashSet(),
Sets.newHashSet(),
"Message",
notificationRecipient,
dataSetNotificationTrigger,
"Subject",
null,
relativeScheduledDays,
sendStrategy);
DataSetNotificationTemplate dst =
new DataSetNotificationTemplate(
Set.of(),
Set.of(),
"Message",
notificationRecipient,
dataSetNotificationTrigger,
"Subject",
null,
relativeScheduledDays,
sendStrategy);
dst.setName(name);
return dst;
}

public static ValidationNotificationTemplate createValidationNotificationTemplate(String name) {
Expand Down

0 comments on commit 1c706bf

Please sign in to comment.