Skip to content

Commit

Permalink
Merge pull request #592 from /issues/591-incompatible-tests
Browse files Browse the repository at this point in the history
Fix #591: Make tests compatible with latest PA server
  • Loading branch information
hvge authored Jun 5, 2024
2 parents 0a74f71 + cb47520 commit 6216809
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,15 @@ public enum ServerVersion {
V1_4_0("1.4", 1004000, ProtocolVersion.V3_1),
V1_5_0("1.5", 1005000, ProtocolVersion.V3_2),
V1_6_0("1.6", 1006000, ProtocolVersion.V3_2),
V1_7_0("1.7", 1007000, ProtocolVersion.V3_2),
V1_8_0("1.8", 1008000, ProtocolVersion.V3_2),

;

/**
* Contains constant for the latest PowerAuth Server version.
*/
public static final ServerVersion LATEST = V1_6_0;
public static final ServerVersion LATEST = V1_8_0;

/**
* Server version represented as string.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ typedef NS_ENUM(int, PowerAuthTestServerVersion) {
PATS_V1_3 = 10300, // V3.1 crypto + Activation OTP, applicationId as String
PATS_V1_4 = 10400, // V3.1 crypto + Activation OTP, applicationId as String
PATS_V1_5 = 10500, // V3.2 crypto + Activation OTP, applicationId as String, userInfo
PATS_V1_6 = 10600, // V3.2 crypto + Activation OTP, applicationId as String, userInfo
PATS_V1_7 = 10700, // V3.2 crypto + Activation OTP, applicationId as String, userInfo
PATS_V1_8 = 10800, // V3.2 crypto + Activation OTP, applicationId as String, userInfo
};

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
"1.4" : "v13",
"1.5" : "v15",
"1.6" : "v15",
"1.7" : "v15",
"1.8" : "v15",

"*" : "v15"
},
Expand Down

0 comments on commit 6216809

Please sign in to comment.