Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ARSnova Backend
Manage
Activity
Members
Labels
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
Paul-Christian Volkmer
ARSnova Backend
Commits
f1f132c7
Commit
f1f132c7
authored
12 years ago
by
Christoph Thelen
Browse files
Options
Downloads
Patches
Plain Diff
Implemented #3843: An 8 digit keyword is generated
parent
46c33d4c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/de/thm/arsnova/services/SessionService.java
+7
-0
7 additions, 0 deletions
src/main/java/de/thm/arsnova/services/SessionService.java
src/test/java/de/thm/arsnova/services/SessionServiceTest.java
+33
-0
33 additions, 0 deletions
...test/java/de/thm/arsnova/services/SessionServiceTest.java
with
40 additions
and
0 deletions
src/main/java/de/thm/arsnova/services/SessionService.java
+
7
−
0
View file @
f1f132c7
...
...
@@ -195,4 +195,11 @@ public class SessionService implements ISessionService {
}
catch
(
ClassCastException
e
)
{}
return
null
;
}
public
String
generateKeyword
()
{
// Generates a number between >=low and <high, so our keyword has exactly 8 digits.
final
int
low
=
10000000
;
final
int
high
=
100000000
;
return
String
.
valueOf
((
int
)(
Math
.
random
()
*
(
high
-
low
)
+
low
));
}
}
This diff is collapsed.
Click to expand it.
src/test/java/de/thm/arsnova/services/SessionServiceTest.java
0 → 100644
+
33
−
0
View file @
f1f132c7
/*
* Copyright (C) 2012 THM webMedia
*
* This file is part of ARSnova.
*
* ARSnova is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ARSnova 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package
de.thm.arsnova.services
;
import
static
org
.
junit
.
Assert
.*;
import
org.junit.Test
;
public
class
SessionServiceTest
{
@Test
public
void
shouldGenerateSessionKeyword
()
{
SessionService
session
=
new
SessionService
();
System
.
out
.
println
(
session
.
generateKeyword
());
assertTrue
(
session
.
generateKeyword
().
matches
(
"^[0-9]{8}$"
));
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment