-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Save open dia test #76
Open
artbez
wants to merge
57
commits into
master
Choose a base branch
from
save-open-dia-test
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
57 commits
Select commit
Hold shift + click to select a range
9bbb9a6
Prepare for diagram constructing
artbez 13eb1ef
Create Scene and Pallete services
artbez f88ade9
Add exist method to Scene
artbez 218c5ff
Add remove and move methods
artbez 3a55d67
Add logging
artbez d4e6d8b
Add addLink method
artbez 00ccd70
Codacy
artbez 69b61d0
Add PropertyEditor service
artbez ec6feba
Add possibility to move element to any point in the scene
artbez a026b52
Code refactor of SceneWindow
artbez 8bc01b9
Merge branch 'master' into diagram-gui
artbez 3fb78a3
Create testspace for tasting
artbez d44c095
Fix movement bug
artbez a55e457
Change namespace of nodes
artbez 60a30c6
Fix bug with property checkbox
artbez aaaeb59
Add HeaderPanel
artbez bf95628
Some experiments with JSExecutor
artbez 8e6c356
Add Block and Coordinate classes
artbez 970860c
Add Link and change SelenideElement to links and blocks in scene service
artbez 1ddddf8
Code refactor
artbez af4b4be
Fix focus
artbez 0b62cb2
Fix clean scene
artbez 70e67bf
Make SceneWindow steps calculated automatically
artbez 64e8b53
Code refactor
artbez 6124f7a
Code refactor
artbez 7403a31
Add class PalleteElement + code refactor
artbez dc0b9c2
Code refactor
artbez 56672d0
Code refactor
artbez de3d452
Merge remote-tracking branch 'remotes/origin/master' into diagram-gui
artbez ffdfc41
Add callTomcat.sh
artbez b17459c
Code refactor
artbez 65f2482
Divide editor to editor/robots and editor/bpmn
artbez 4723a4c
Add Page as an object
artbez 16ef59c
Remove Scene, PropertyEditor and Pallete from beans
artbez 49765e7
Code refactor
artbez 447413f
Add Block and Link providers
artbez 2441162
Add additional condition for remove
artbez e77cadb
Make focus works by JavaScriptExecutor
artbez a001a6d
Add webdriver's timeouts
artbez e0f2193
Fix bug with movement
artbez d2235ef
Remove unnecessary changes
artbez e94789c
Merge branch 'diagram-gui' into save-open-dia-test
artbez 3a5ea63
Add titles in pages
artbez ce0fee8
Remove unnecessary modal call
artbez 3f41d7b
Add save diagram test
artbez 7108d8d
Add equals check for diagrams
artbez 1d89f57
Fix bug with deleting folders and some code refactor
artbez b2250ac
Code refactor, java doc and style guide
artbez 6e4cb49
Merge branch 'diagram-gui' into save-open-dia-test
artbez fc2fa52
Code refactor, java doc and style guide
artbez a5badfb
Merge branch 'master' into save-open-dia-test
artbez 329cbea
Merge branch 'master' into diagram-gui
artbez bb65fb9
Merge branch 'master' into diagram-gui
artbez 989fb6f
Code refactor
artbez 2995bc2
Code refactor
artbez 8176207
Merge branch 'diagram-gui' into save-open-dia-test
artbez 184eaac
Code refactor
artbez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/bin/bash | ||
iter=1 | ||
all=120 | ||
until [ "$(curl --silent --show-error --connect-timeout 1 -I http://localhost:"${1:-"8080"}"/auth | grep '302 Found')" != "" ]; | ||
do | ||
if [ "$iter" -lt "$all" ] | ||
then | ||
echo "--- sleeping for 10 seconds" | ||
sleep 10 | ||
let iter=$iter+1 | ||
else | ||
echo "Server didn't return 302 found for long time" | ||
exit 1 | ||
fi | ||
done | ||
echo "auth-service found" | ||
iter=1 | ||
all=120 | ||
until [ "$(curl --silent --show-error --connect-timeout 1 -I http://localhost:"${2:-"8082"}"/dashboard | grep '302 Found')" != "" ]; | ||
do | ||
if [ "$iter" -lt "$all" ] | ||
then | ||
echo "--- sleeping for 10 seconds" | ||
sleep 10 | ||
let iter=$iter+1 | ||
else | ||
echo "Server didn't return 302 found for long time" | ||
exit 1 | ||
fi | ||
done | ||
echo "dashboard-service found" | ||
iter=1 | ||
all=120 | ||
until [ "$(curl --silent --show-error --connect-timeout 1 -I http://localhost:"${3:-"8081"}"/editor | grep '302 Found')" != "" ]; | ||
do | ||
if [ "$iter" -lt "$all" ] | ||
then | ||
echo "--- sleeping for 10 seconds" | ||
sleep 10 | ||
let iter=$iter+1 | ||
else | ||
echo "Server didn't return 302 found for long time" | ||
exit 1 | ||
fi | ||
done | ||
echo "editor-service found" | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comments as in another review.