aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/org/pacien/lemonad/attempt/AttemptTest.java
blob: 0d16c31e852478d617f01160ed70c7bf7b3c6af7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
 * lemonad - Some functional sweetness for Java
 * Copyright (C) 2019  Pacien TRAN-GIRARD
 *
 * 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, either version 3 of the
 * License, or (at your option) any later version.
 *
 * 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 <https://www.gnu.org/licenses/>.
 */

package org.pacien.lemonad.attempt;

import org.junit.jupiter.api.Test;

import java.util.NoSuchElementException;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;

/**
 * @author pacien
 */
class AttemptTest {
  @Test void testSimpleSuccess() {
    var result = "result";
    var success = Attempt.success(result);
    assertFalse(success.isFailure());
    assertTrue(success.isSuccess());
    assertThrows(NoSuchElementException.class, success::getError);
    assertEquals(result, success.getResult());
    success.ifFailure(__ -> fail());
    success.ifSuccess(innerResult -> assertEquals(result, innerResult));
  }

  @Test void testSimpleFailure() {
    var error = 0;
    var failure = Attempt.failure(error);
    assertTrue(failure.isFailure());
    assertFalse(failure.isSuccess());
    assertEquals(error, failure.getError());
    assertThrows(NoSuchElementException.class, failure::getResult);
    failure.ifFailure(innerError -> assertEquals(error, innerError));
    failure.ifSuccess(__ -> fail());
  }

  @Test void testNormalAttempt() {
    var result = "result";
    var success = Attempt.attempt(() -> result);
    assertFalse(success.isFailure());
    assertTrue(success.isSuccess());
    assertThrows(NoSuchElementException.class, success::getError);
    assertEquals(result, success.getResult());
    success.ifFailure(__ -> fail());
    success.ifSuccess(innerResult -> assertEquals(result, innerResult));
  }

  @Test void testFailedAttempt() {
    var exception = new Exception();
    var failure = Attempt.attempt(() -> {
      throw exception;
    });
    assertTrue(failure.isFailure());
    assertFalse(failure.isSuccess());
    assertEquals(exception, failure.getError());
    assertThrows(NoSuchElementException.class, failure::getResult);
    failure.ifFailure(innerError -> assertEquals(exception, innerError));
    failure.ifSuccess(__ -> fail());
  }

  @Test void testTransformationFlow() {
    var result0 = 0;
    var result1 = "res";
    var result2 = 0L;
    var result3 = "0";
    var error0 = 0;
    var error1 = 0L;
    var error2 = "fail";
    var error3 = false;

    Attempt.<Integer, Long>success(result0)
      .recoverError((Long err) -> {
        fail();
        return Attempt.failure(err);
      })
      .mapResult((Integer res) -> {
        assertEquals(result0, res);
        return result1;
      })
      .transformResult((String res) -> {
        assertEquals(result1, res);
        return Attempt.<String, Integer>failure(error0);
      }, (Integer err) -> {
        assertEquals(error0, err);
        return (long) err;
      })
      .ifSuccess((String __) -> fail())
      .transformResult((String res) -> {
        fail();
        return Attempt.success(res);
      })
      .mapError((Long err) -> {
        assertEquals(error0, err);
        return error1;
      })
      .recoverError((Long err) -> {
        assertEquals(error1, err);
        return Attempt.<Long, Long>success(result2);
      }, (Long res) -> {
        assertEquals(result2, res);
        return res.toString();
      })
      .ifFailure((Long err) -> fail())
      .flatMap((Attempt<? super String, ? super Long> attempt) -> {
        assertEquals(Long.toString(result2), attempt.getResult());
        return Attempt.<String, String>failure(error2);
      })
      .ifSuccess(__ -> fail())
      .ifFailure(f -> assertEquals(error2, f))
      .transform((String __) -> Attempt.failure(error3), (String __) -> Attempt.success(result3))
      .ifSuccess((String result) -> assertEquals(result3, result))
      .ifFailure((Boolean __) -> fail());
  }
}