orasaurus 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,11 +2,43 @@ require 'spec_helper'
2
2
 
3
3
  describe "Orasaurus" do
4
4
 
5
- it "should be able to create an Oracle object from a file" do
6
- Orasaurus.compile( "franklin" )
7
- Orasaurus.compile( "franklin" ).should == "franklin"
5
+ before(:all) do
6
+ cleanup
8
7
  end
9
8
 
10
- end
9
+ before(:each) do
10
+ @sampleApp = Orasaurus::Application.new("SampleApp",File.dirname(__FILE__) + '/sampleApp')
11
+ end
11
12
 
12
- puts "franklin"
13
+ it "should have a default configuration" do
14
+ @sampleApp.config.should_not be_nil
15
+ end
16
+
17
+ it "should be able to override default configuration" do
18
+ @sampleApp.config.custom = true
19
+ @sampleApp.config.custom.should be_true
20
+ @sampleApp.config.custom = false
21
+ @sampleApp.config.custom.should be_false
22
+ end
23
+
24
+ it "should be able to discover the buildable directories" do
25
+ @sampleApp.build_dirs.grep(/Notes\/Packages/).should_not be_empty
26
+ @sampleApp.build_dirs.grep(/Notes\/Tables/).should_not be_empty
27
+ @sampleApp.build_dirs.grep(/Notes\/Sequences/).should_not be_empty
28
+ end
29
+
30
+ it "should be able to generate build scripts" do
31
+ @sampleApp.generate(:build_scripts)
32
+ File.exists?(@sampleApp.base_dir+'/Notes/Packages/build.sql').should be_true
33
+ end
34
+
35
+ it "should be able to generate teardown scripts" do
36
+ @sampleApp.generate(:teardown_scripts)
37
+ File.exists?(@sampleApp.base_dir+'/Notes/Packages/teardown.sql').should be_true
38
+ end
39
+
40
+ after(:all) do
41
+ cleanup
42
+ end
43
+
44
+ end
@@ -0,0 +1,164 @@
1
+ /*<TOAD_FILE_CHUNK>*/
2
+ CREATE OR REPLACE PACKAGE pkg_note_comments
3
+ IS
4
+
5
+ TYPE note_comments_tab
6
+ IS TABLE OF note_comments%ROWTYPE
7
+ INDEX BY BINARY_INTEGER;
8
+
9
+ empty_tab note_comments_tab;
10
+
11
+ FUNCTION f_get
12
+ ( the_id note_comments.id%TYPE )
13
+ RETURN note_comments%ROWTYPE;
14
+
15
+ FUNCTION f_get_comments
16
+ ( the_note_id IN note_comments.note_id%TYPE )
17
+ RETURN note_comments_tab;
18
+
19
+ PROCEDURE p_create
20
+ ( the_note_id IN note_comments.note_id%TYPE
21
+ , the_text IN note_comments.text%TYPE );
22
+
23
+ PROCEDURE p_update
24
+ ( the_id IN note_comments.id%TYPE
25
+ , the_note_id IN note_comments.note_id%TYPE
26
+ , the_text IN note_comments.text%TYPE );
27
+
28
+ PROCEDURE p_save
29
+ ( the_comment IN note_comments%ROWTYPE );
30
+
31
+ PROCEDURE p_save
32
+ ( the_comments IN note_comments_tab );
33
+
34
+ PROCEDURE p_delete
35
+ ( the_id IN note_comments.id%TYPE );
36
+
37
+ END;
38
+
39
+ /
40
+ /*<TOAD_FILE_CHUNK>*/
41
+
42
+ CREATE OR REPLACE PACKAGE BODY pkg_note_comments
43
+ IS
44
+
45
+ FUNCTION f_get
46
+ ( the_id note_comments.id%TYPE )
47
+ RETURN note_comments%ROWTYPE
48
+ IS
49
+ return_rec note_comments%ROWTYPE;
50
+ BEGIN
51
+
52
+ SELECT *
53
+ INTO return_rec
54
+ FROM note_comments
55
+ WHERE id = the_id;
56
+
57
+ RETURN return_rec;
58
+
59
+ END;
60
+
61
+ FUNCTION f_get_comments
62
+ ( the_note_id IN note_comments.note_id%TYPE )
63
+ RETURN note_comments_tab
64
+ IS
65
+ return_tab note_comments_tab;
66
+ BEGIN
67
+
68
+ SELECT *
69
+ BULK COLLECT INTO return_tab
70
+ FROM note_comments
71
+ WHERE note_id = the_note_id
72
+ ORDER BY created_at;
73
+
74
+ RETURN return_tab;
75
+
76
+ END;
77
+
78
+ PROCEDURE p_create
79
+ ( the_note_id IN note_comments.note_id%TYPE
80
+ , the_text IN note_comments.text%TYPE )
81
+ IS
82
+ BEGIN
83
+
84
+ INSERT INTO note_comments
85
+ ( id
86
+ , note_id
87
+ , text
88
+ , created_at
89
+ , created_by
90
+ , updated_at
91
+ , updated_by )
92
+ VALUES
93
+ ( note_comments_seq.nextval
94
+ , the_note_id
95
+ , the_text
96
+ , SYSDATE
97
+ , USER
98
+ , SYSDATE
99
+ , USER );
100
+
101
+ END;
102
+
103
+ PROCEDURE p_update
104
+ ( the_id IN note_comments.id%TYPE
105
+ , the_note_id IN note_comments.note_id%TYPE
106
+ , the_text IN note_comments.text%TYPE )
107
+ IS
108
+ BEGIN
109
+
110
+ UPDATE note_comments
111
+ SET note_id = the_note_id
112
+ , text = the_text
113
+ , updated_at = SYSDATE
114
+ , updated_by = USER
115
+ WHERE id = the_id;
116
+
117
+ END;
118
+
119
+ PROCEDURE p_save
120
+ ( the_comment IN note_comments%ROWTYPE )
121
+ IS
122
+ BEGIN
123
+
124
+ IF the_comment.id IS NULL
125
+ OR the_comment.id < 0
126
+ THEN
127
+ p_create
128
+ ( the_note_id => the_comment.note_id
129
+ , the_text => the_comment.text );
130
+ ELSE
131
+ p_update
132
+ ( the_id => the_comment.id
133
+ , the_note_id => the_comment.note_id
134
+ , the_text => the_comment.text );
135
+
136
+ END IF;
137
+
138
+ END;
139
+
140
+ PROCEDURE p_save
141
+ ( the_comments IN note_comments_tab )
142
+ IS
143
+ BEGIN
144
+
145
+ IF the_comments.COUNT > 0 THEN
146
+ FOR i IN the_comments.FIRST..the_comments.LAST LOOP
147
+ p_save( the_comments( i ) );
148
+ END LOOP;
149
+ END IF;
150
+
151
+ END;
152
+
153
+ PROCEDURE p_delete
154
+ ( the_id IN note_comments.id%TYPE )
155
+ IS
156
+ BEGIN
157
+
158
+ DELETE FROM note_comments WHERE id = the_id;
159
+
160
+ END;
161
+
162
+ END;
163
+
164
+ /
@@ -0,0 +1,146 @@
1
+ /*<TOAD_FILE_CHUNK>*/
2
+ CREATE OR REPLACE PACKAGE pkg_note_tags
3
+ IS
4
+
5
+ TYPE tag_stat
6
+ IS RECORD
7
+ ( tag note_tags.tag%TYPE
8
+ , count INTEGER );
9
+
10
+ TYPE tag_stats
11
+ IS TABLE OF tag_stat
12
+ INDEX BY BINARY_INTEGER;
13
+
14
+ CURSOR cur_tag_stats
15
+ ( the_notebook_id IN notebooks.id%TYPE )
16
+ RETURN tag_stat;
17
+
18
+ FUNCTION f_get_tags
19
+ ( the_note_id IN notes.id%TYPE )
20
+ RETURN pkg_array_utils.vc_arr;
21
+
22
+ FUNCTION f_get_tag_stats
23
+ ( the_notebook_id IN notebooks.id%TYPE )
24
+ RETURN tag_stats;
25
+
26
+ PROCEDURE p_save
27
+ ( the_note_tag_rec IN OUT note_tags%ROWTYPE );
28
+
29
+ PROCEDURE p_save_note_tags
30
+ ( the_note_id IN notes.id%TYPE
31
+ , the_tags IN pkg_array_utils.vc_arr );
32
+
33
+ END;
34
+
35
+ /
36
+ /*<TOAD_FILE_CHUNK>*/
37
+
38
+ CREATE OR REPLACE PACKAGE BODY pkg_note_tags
39
+ IS
40
+
41
+ CURSOR cur_tag_stats
42
+ ( the_notebook_id IN notebooks.id%TYPE )
43
+ RETURN tag_stat
44
+ IS
45
+ SELECT *
46
+ FROM (
47
+ SELECT tag, COUNT( * ) cnt
48
+ FROM note_tags nt
49
+ JOIN notes n
50
+ ON nt.note_id = n.id
51
+ JOIN notebooks nb
52
+ ON n.notebook_id = nb.id
53
+ WHERE nb.id = the_notebook_id
54
+ GROUP BY tag
55
+ )
56
+ ORDER BY cnt DESC, tag;
57
+
58
+ FUNCTION f_get_tags
59
+ ( the_note_id IN notes.id%TYPE )
60
+ RETURN pkg_array_utils.vc_arr
61
+ IS
62
+ return_arr pkg_array_utils.vc_arr;
63
+ BEGIN
64
+
65
+ SELECT tag
66
+ BULK COLLECT INTO return_arr
67
+ FROM note_tags
68
+ WHERE note_id = the_note_id;
69
+
70
+ RETURN return_arr;
71
+
72
+ END;
73
+
74
+ FUNCTION f_get_tag_stats
75
+ ( the_notebook_id IN notebooks.id%TYPE )
76
+ RETURN tag_stats
77
+ IS
78
+ return_stats tag_stats;
79
+ BEGIN
80
+
81
+ OPEN cur_tag_stats( the_notebook_id );
82
+ FETCH cur_tag_stats
83
+ BULK COLLECT INTO return_stats;
84
+ CLOSE cur_tag_stats;
85
+
86
+ RETURN return_stats;
87
+
88
+ END;
89
+
90
+ PROCEDURE p_save
91
+ ( the_note_tag_rec IN OUT note_tags%ROWTYPE )
92
+ IS
93
+ BEGIN
94
+
95
+ IF the_note_tag_rec.id IS NULL THEN
96
+
97
+ SELECT note_tags_seq.NEXTVAL
98
+ INTO the_note_tag_rec.id
99
+ FROM DUAL;
100
+
101
+ INSERT INTO note_tags
102
+ ( id
103
+ , note_id
104
+ , tag )
105
+ VALUES
106
+ ( the_note_tag_rec.id
107
+ , the_note_tag_rec.note_id
108
+ , the_note_tag_rec.tag );
109
+
110
+ ELSE
111
+
112
+ UPDATE note_tags
113
+ SET note_id = the_note_tag_rec.note_id
114
+ , tag = the_note_tag_rec.tag
115
+ WHERE id = the_note_tag_rec.id;
116
+
117
+ END IF;
118
+
119
+ END;
120
+
121
+ PROCEDURE p_save_note_tags
122
+ ( the_note_id IN notes.id%TYPE
123
+ , the_tags IN pkg_array_utils.vc_arr )
124
+ IS
125
+ BEGIN
126
+
127
+ DELETE FROM note_tags WHERE note_id = the_note_id;
128
+
129
+ IF the_tags.COUNT > 0 THEN
130
+ FOR i IN the_tags.FIRST..the_tags.LAST LOOP
131
+ DECLARE
132
+ the_tag_rec note_tags%ROWTYPE;
133
+ BEGIN
134
+ the_tag_rec.note_id := the_note_id;
135
+ the_tag_rec.tag := the_tags( i );
136
+ p_save( the_note_tag_rec => the_tag_rec );
137
+ END;
138
+ END LOOP;
139
+ END IF;
140
+
141
+
142
+ END;
143
+
144
+ END;
145
+
146
+ /
@@ -0,0 +1,135 @@
1
+ /*<TOAD_FILE_CHUNK>*/
2
+ CREATE OR REPLACE PACKAGE pkg_notebooks
3
+ IS
4
+
5
+ TYPE notebooks_tab
6
+ IS TABLE OF notebooks%ROWTYPE;
7
+
8
+ CURSOR cur_notebooks
9
+ RETURN notebooks%ROWTYPE;
10
+
11
+ FUNCTION f_get_all
12
+ RETURN notebooks_tab;
13
+
14
+ FUNCTION f_get
15
+ ( the_id IN notebooks.id%TYPE )
16
+ RETURN notebooks%ROWTYPE;
17
+
18
+ FUNCTION f_get
19
+ ( the_title IN notebooks.title%TYPE )
20
+ RETURN notebooks%ROWTYPE;
21
+
22
+ FUNCTION f_title
23
+ ( the_id IN notebooks.id%TYPE )
24
+ RETURN notebooks.title%TYPE;
25
+
26
+ FUNCTION f_human_title
27
+ ( the_id IN notebooks.id%TYPE )
28
+ RETURN notebooks.title%TYPE;
29
+
30
+ PROCEDURE p_create
31
+ ( the_title IN VARCHAR2 );
32
+
33
+ END;
34
+
35
+ /
36
+ /*<TOAD_FILE_CHUNK>*/
37
+ CREATE OR REPLACE PACKAGE BODY pkg_notebooks
38
+ IS
39
+
40
+ CURSOR cur_notebooks
41
+ RETURN notebooks%ROWTYPE
42
+ IS
43
+ SELECT *
44
+ FROM notebooks
45
+ ORDER BY title;
46
+
47
+ FUNCTION f_get_all
48
+ RETURN notebooks_tab
49
+ IS
50
+ return_tab notebooks_tab;
51
+ BEGIN
52
+
53
+ OPEN cur_notebooks;
54
+ FETCH cur_notebooks BULK COLLECT INTO return_tab;
55
+ CLOSE cur_notebooks;
56
+
57
+ RETURN return_tab;
58
+
59
+ END;
60
+
61
+ FUNCTION f_get
62
+ ( the_id IN notebooks.id%TYPE )
63
+ RETURN notebooks%ROWTYPE
64
+ IS
65
+ return_rec notebooks%ROWTYPE;
66
+ BEGIN
67
+
68
+ SELECT *
69
+ INTO return_rec
70
+ FROM notebooks
71
+ WHERE id = the_id;
72
+
73
+ RETURN return_rec;
74
+
75
+ END;
76
+
77
+ FUNCTION f_get
78
+ ( the_title IN notebooks.title%TYPE )
79
+ RETURN notebooks%ROWTYPE
80
+ IS
81
+ return_rec notebooks%ROWTYPE;
82
+ BEGIN
83
+
84
+ SELECT *
85
+ INTO return_rec
86
+ FROM notebooks
87
+ WHERE title = the_title;
88
+
89
+ RETURN return_rec;
90
+
91
+ END;
92
+
93
+ FUNCTION f_title
94
+ ( the_id IN notebooks.id%TYPE )
95
+ RETURN notebooks.title%TYPE
96
+ IS
97
+ return_val notebooks.title%TYPE;
98
+ BEGIN
99
+
100
+ SELECT title
101
+ INTO return_val
102
+ FROM notebooks
103
+ WHERE id = the_id;
104
+
105
+ RETURN return_val;
106
+
107
+ END;
108
+
109
+ FUNCTION f_human_title
110
+ ( the_id IN notebooks.id%TYPE )
111
+ RETURN notebooks.title%TYPE
112
+ IS
113
+ BEGIN
114
+
115
+ RETURN INITCAP( REPLACE( f_title( the_id ), '_', ' ' ) );
116
+
117
+ END;
118
+
119
+ PROCEDURE p_create
120
+ ( the_title IN VARCHAR2 )
121
+ IS
122
+ BEGIN
123
+
124
+ INSERT INTO notebooks
125
+ ( id
126
+ , title )
127
+ VALUES
128
+ ( notebooks_seq.nextval
129
+ , the_title );
130
+
131
+
132
+ END;
133
+
134
+ END;
135
+ /