Added FindApp() style and parameter checking test cases for the six BRoster::Launch() versions.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1299 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -89,69 +89,72 @@ case 3: teamIDList is not NULL and not empty, signature is not NULL and
|
|||||||
Should append the team IDs of all running apps with the supplied
|
Should append the team IDs of all running apps with the supplied
|
||||||
signature to teamIDList.
|
signature to teamIDList.
|
||||||
|
|
||||||
status_t FindApp(const char *mimeType, entry_ref *app) const
|
status_t FindApp() const: common cases
|
||||||
case 1: mimeType or app are NULL =>
|
case 1: uninstalled type mimeType =>
|
||||||
Should return B_BAD_VALUE.
|
|
||||||
case 2: mimeType is invalid =>
|
|
||||||
Should return B_BAD_VALUE.
|
|
||||||
case 3: uninstalled type mimeType =>
|
|
||||||
Should return B_LAUNCH_FAILED_APP_NOT_FOUND.
|
Should return B_LAUNCH_FAILED_APP_NOT_FOUND.
|
||||||
case 4: installed type mimeType, no preferred app =>
|
case 2: installed type mimeType, no preferred app =>
|
||||||
Should return B_LAUNCH_FAILED_NO_PREFERRED_APP.
|
Should return B_LAUNCH_FAILED_NO_PREFERRED_APP.
|
||||||
case 5: installed type mimeType, preferred app, app type not installed,
|
case 3: installed type mimeType, preferred app, app type not installed,
|
||||||
app has no signature =>
|
app has no signature =>
|
||||||
Should return B_LAUNCH_FAILED_APP_NOT_FOUND.
|
Should return B_LAUNCH_FAILED_APP_NOT_FOUND.
|
||||||
case 6: installed type mimeType, preferred app, app type not installed,
|
case 4: installed type mimeType, preferred app, app type not installed,
|
||||||
app has signature =>
|
app has signature =>
|
||||||
Should return B_OK and set the ref to refer to the application's
|
Should return B_OK and set the ref to refer to the application's
|
||||||
executable. Should install the app type and set the app hint on it.
|
executable. Should install the app type and set the app hint on it.
|
||||||
case 7: installed type mimeType, preferred app, app type installed,
|
case 5: installed type mimeType, preferred app, app type installed,
|
||||||
app has signature =>
|
app has signature =>
|
||||||
Should return B_OK and set the ref to refer to the application's
|
Should return B_OK and set the ref to refer to the application's
|
||||||
executable. Should set the app hint on the app type.
|
executable. Should set the app hint on the app type.
|
||||||
case 8: installed type mimeType, preferred app, app type installed,
|
case 6: installed type mimeType, preferred app, app type installed,
|
||||||
app has signature, app has no execute permission =>
|
app has signature, app has no execute permission =>
|
||||||
Should return B_OK and set the ref to refer to the application's
|
Should return B_OK and set the ref to refer to the application's
|
||||||
executable. Should set the app hint on the app type.
|
executable. Should set the app hint on the app type.
|
||||||
case 9: installed type mimeType, preferred app, app type installed,
|
case 7: installed type mimeType, preferred app, app type installed,
|
||||||
two apps have the signature =>
|
two apps have the signature =>
|
||||||
Should return B_OK and set the ref to refer to the application
|
Should return B_OK and set the ref to refer to the application
|
||||||
executable with the most recent modification time. Should set the app
|
executable with the most recent modification time. Should set the app
|
||||||
hint on the app type.
|
hint on the app type.
|
||||||
case 10:installed type mimeType, preferred app, app type installed,
|
case 8: installed type mimeType, preferred app, app type installed,
|
||||||
two apps have the signature, one has a version info, the other one is
|
two apps have the signature, one has a version info, the other one is
|
||||||
newer =>
|
newer =>
|
||||||
Should return B_OK and set the ref to refer to the application
|
Should return B_OK and set the ref to refer to the application
|
||||||
executable with version info. Should set the app hint on the app type.
|
executable with version info. Should set the app hint on the app type.
|
||||||
case 11:installed type mimeType, preferred app, app type installed,
|
case 9: installed type mimeType, preferred app, app type installed,
|
||||||
two apps have the signature, both apps have a version info =>
|
two apps have the signature, both apps have a version info =>
|
||||||
Should return B_OK and set the ref to refer to the application
|
Should return B_OK and set the ref to refer to the application
|
||||||
executable with the greater version. Should set the app
|
executable with the greater version. Should set the app
|
||||||
hint on the app type.
|
hint on the app type.
|
||||||
case 12:installed type mimeType, preferred app, app type installed,
|
case 10:installed type mimeType, preferred app, app type installed,
|
||||||
preferred app type has an app hint that points to an app with a
|
preferred app type has an app hint that points to an app with a
|
||||||
different signature =>
|
different signature =>
|
||||||
Should return B_OK and set the ref to refer to the application's
|
Should return B_OK and set the ref to refer to the application's
|
||||||
executable. Should remove the incorrect app hint on the app type.
|
executable. Should remove the incorrect app hint on the app type.
|
||||||
(OBOS: Should set the correct app hint.
|
(OBOS: Should set the correct app hint.
|
||||||
Don't even return the wrong app?)
|
Don't even return the wrong app?)
|
||||||
case 13:installed type mimeType, preferred app, app type installed,
|
case 11:installed type mimeType, preferred app, app type installed,
|
||||||
preferred app type has an app hint pointing to void,
|
preferred app type has an app hint pointing to void,
|
||||||
a differently named app with this signature exists =>
|
a differently named app with this signature exists =>
|
||||||
Should return B_OK and set the ref to refer to the application's
|
Should return B_OK and set the ref to refer to the application's
|
||||||
executable. (not R5: Should update the app hint on the app type?)
|
executable. (not R5: Should update the app hint on the app type?)
|
||||||
case 14:mimeType is app signature, not installed =>
|
case 12:mimeType is app signature, not installed =>
|
||||||
Should return B_OK and set the ref to refer to the application
|
Should return B_OK and set the ref to refer to the application
|
||||||
executable. Should set the app hint on the app type.
|
executable. Should set the app hint on the app type.
|
||||||
case 15:mimeType is installed, but has no preferred application,
|
case 13:mimeType is installed, but has no preferred application,
|
||||||
super type has preferred application =>
|
super type has preferred application =>
|
||||||
Should return B_OK and set the ref to refer to the application
|
Should return B_OK and set the ref to refer to the application
|
||||||
executable associated with the preferred app of the supertype.
|
executable associated with the preferred app of the supertype.
|
||||||
Should set the app hint on the app type.
|
Should set the app hint on the app type.
|
||||||
case 16:installed type mimeType, preferred app, app type not installed,
|
case 14:installed type mimeType, preferred app, app type not installed,
|
||||||
app has signature, app is trash =>
|
app has signature, app is trash =>
|
||||||
Should return B_LAUNCH_FAILED_APP_IN_TRASH.
|
Should return B_LAUNCH_FAILED_APP_IN_TRASH.
|
||||||
|
|
||||||
|
status_t FindApp(const char *mimeType, entry_ref *app) const
|
||||||
|
case 1: mimeType or app are NULL =>
|
||||||
|
Should return B_BAD_VALUE.
|
||||||
|
case 2: mimeType is invalid =>
|
||||||
|
Should return B_BAD_VALUE.
|
||||||
|
case 3: common tests (all)
|
||||||
|
|
||||||
status_t FindApp(entry_ref *ref, entry_ref *app) const
|
status_t FindApp(entry_ref *ref, entry_ref *app) const
|
||||||
case 1: ref or app are NULL =>
|
case 1: ref or app are NULL =>
|
||||||
Should return B_BAD_VALUE.
|
Should return B_BAD_VALUE.
|
||||||
@@ -186,88 +189,261 @@ case 8: ref is valid and refers to a link to a file, file has type,
|
|||||||
preferred application's executable. Should install the app type and
|
preferred application's executable. Should install the app type and
|
||||||
set the app hint on it.
|
set the app hint on it.
|
||||||
case 9: ref is valid, file has type,
|
case 9: ref is valid, file has type,
|
||||||
FindApp(const char*, entry_ref*) cases 3-16 (== common cases 1-14)
|
common cases 1-14
|
||||||
case 10:ref is valid, file has no type, sniffing results in a type,
|
case 10:ref is valid, file has no type, sniffing results in a type,
|
||||||
type is set on file,
|
type is set on file,
|
||||||
FindApp(const char*, entry_ref*) cases 4-16 (== common cases 2-14)
|
common cases 2-14
|
||||||
|
|
||||||
status_t Launch(const char *mimeType, BMessage *initialMsgs,
|
status_t Launch() const: common cases
|
||||||
|
case 1: uninstalled type mimeType =>
|
||||||
|
Should return B_LAUNCH_FAILED_APP_NOT_FOUND.
|
||||||
|
case 2: installed type mimeType, no preferred app =>
|
||||||
|
Should return B_LAUNCH_FAILED_NO_PREFERRED_APP.
|
||||||
|
case 3: installed type mimeType, preferred app, app type not installed,
|
||||||
|
app has no signature =>
|
||||||
|
Should return B_LAUNCH_FAILED_APP_NOT_FOUND.
|
||||||
|
case 4: installed type mimeType, preferred app, app type not installed,
|
||||||
|
app has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should install the app type and set the
|
||||||
|
app hint on it.
|
||||||
|
case 5: installed type mimeType, preferred app, app type installed,
|
||||||
|
app has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should set the app hint on the app type.
|
||||||
|
case 6: installed type mimeType, preferred app, app type installed,
|
||||||
|
app has signature, app has no execute permission =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should set the app hint on the app type.
|
||||||
|
case 7: installed type mimeType, preferred app, app type installed,
|
||||||
|
two apps have the signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application executable with the most recent modification time.
|
||||||
|
Should set the app hint on the app type.
|
||||||
|
case 8: installed type mimeType, preferred app, app type installed,
|
||||||
|
two apps have the signature, one has a version info, the other one is
|
||||||
|
newer =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application executable with version info. Should set the app hint
|
||||||
|
on the app type.
|
||||||
|
case 9: installed type mimeType, preferred app, app type installed,
|
||||||
|
two apps have the signature, both apps have a version info =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application executable with the greater version. Should set the app
|
||||||
|
hint on the app type.
|
||||||
|
case 10:installed type mimeType, preferred app, app type installed,
|
||||||
|
preferred app type has an app hint that points to an app with a
|
||||||
|
different signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should remove the incorrect app hint on
|
||||||
|
the app type.
|
||||||
|
(OBOS: Should set the correct app hint.
|
||||||
|
Don't even run the wrong app?)
|
||||||
|
case 11:installed type mimeType, preferred app, app type installed,
|
||||||
|
preferred app type has an app hint pointing to void,
|
||||||
|
a differently named app with this signature exists =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable.
|
||||||
|
(not R5: Should update the app hint on the app type?)
|
||||||
|
case 12:mimeType is app signature, not installed =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application executable. Should set the app hint on the app type.
|
||||||
|
case 13:mimeType is installed, but has no preferred application,
|
||||||
|
super type has preferred application =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application executable associated with the preferred app of the
|
||||||
|
supertype. Should set the app hint on the app type.
|
||||||
|
case 14:installed type mimeType, preferred app, app type not installed,
|
||||||
|
app has signature, app is trash =>
|
||||||
|
Should return B_LAUNCH_FAILED_APP_IN_TRASH.
|
||||||
|
|
||||||
|
status_t Launch(const char *mimeType, BMessage *initialMsg,
|
||||||
team_id *appTeam) const
|
team_id *appTeam) const
|
||||||
case 1: mimeType is NULL =>
|
case 1: mimeType is NULL =>
|
||||||
Should return B_BAD_VALUE.
|
Should return B_BAD_VALUE.
|
||||||
case 2: mimeType is invalid =>
|
case 2: mimeType is invalid =>
|
||||||
Should return B_BAD_VALUE.
|
Should return B_BAD_VALUE.
|
||||||
case 3: uninstalled type mimeType =>
|
case 3: common cases (all)
|
||||||
Should return B_LAUNCH_FAILED_APP_NOT_FOUND.
|
case 4: installed type mimeType, preferred app, app type not installed,
|
||||||
case 4: installed type mimeType, no preferred app =>
|
app has signature, NULL initialMsg =>
|
||||||
Should return B_LAUNCH_FAILED_NO_PREFERRED_APP.
|
Should return B_OK and set team to the ID of the team running the
|
||||||
case 5: installed type mimeType, preferred app, app type not installed,
|
application's executable. Should install the app type and set the
|
||||||
app has no signature =>
|
app hint on it.
|
||||||
Should return B_LAUNCH_FAILED_APP_NOT_FOUND.
|
|
||||||
case 6: installed type mimeType, preferred app, app type not installed,
|
|
||||||
app has signature =>
|
|
||||||
Should return B_OK and set the ref to refer to the application's
|
|
||||||
executable. Should install the app type and set the app hint on it.
|
|
||||||
case 7: installed type mimeType, preferred app, app type installed,
|
|
||||||
app has signature =>
|
|
||||||
Should return B_OK and set the ref to refer to the application's
|
|
||||||
executable. Should set the app hint on the app type.
|
|
||||||
case 8: installed type mimeType, preferred app, app type installed,
|
|
||||||
app has signature, app has no execute permission =>
|
|
||||||
Should return B_OK and set the ref to refer to the application's
|
|
||||||
executable. Should set the app hint on the app type.
|
|
||||||
case 9: installed type mimeType, preferred app, app type installed,
|
|
||||||
two apps have the signature =>
|
|
||||||
Should return B_OK and set the ref to refer to the application
|
|
||||||
executable with the most recent modification time. Should set the app
|
|
||||||
hint on the app type.
|
|
||||||
case 10:installed type mimeType, preferred app, app type installed,
|
|
||||||
two apps have the signature, one has a version info, the other one is
|
|
||||||
newer =>
|
|
||||||
Should return B_OK and set the ref to refer to the application
|
|
||||||
executable with version info. Should set the app hint on the app type.
|
|
||||||
case 11:installed type mimeType, preferred app, app type installed,
|
|
||||||
two apps have the signature, both apps have a version info =>
|
|
||||||
Should return B_OK and set the ref to refer to the application
|
|
||||||
executable with the greater version. Should set the app
|
|
||||||
hint on the app type.
|
|
||||||
case 12:installed type mimeType, preferred app, app type installed,
|
|
||||||
preferred app type has an app hint that points to an app with a
|
|
||||||
different signature =>
|
|
||||||
Should return B_OK and set the ref to refer to the application's
|
|
||||||
executable. Should remove the incorrect app hint on the app type.
|
|
||||||
(OBOS: Should set the correct app hint.
|
|
||||||
Don't even return the wrong app?)
|
|
||||||
case 13:installed type mimeType, preferred app, app type installed,
|
|
||||||
preferred app type has an app hint pointing to void,
|
|
||||||
a differently named app with this signature exists =>
|
|
||||||
Should return B_OK and set the ref to refer to the application's
|
|
||||||
executable. (not R5: Should update the app hint on the app type?)
|
|
||||||
case 14:mimeType is app signature, not installed =>
|
|
||||||
Should return B_OK and set the ref to refer to the application
|
|
||||||
executable. Should set the app hint on the app type.
|
|
||||||
case 15:mimeType is installed, but has no preferred application,
|
|
||||||
super type has preferred application =>
|
|
||||||
Should return B_OK and set the ref to refer to the application
|
|
||||||
executable associated with the preferred app of the supertype.
|
|
||||||
Should set the app hint on the app type.
|
|
||||||
case 16:installed type mimeType, preferred app, app type not installed,
|
|
||||||
app has signature, app is trash =>
|
|
||||||
Should return B_LAUNCH_FAILED_APP_IN_TRASH.
|
|
||||||
|
|
||||||
status_t Launch(const char *mimeType, BList *messageList,
|
status_t Launch(const char *mimeType, BList *messageList,
|
||||||
team_id *appTeam) const
|
team_id *appTeam) const
|
||||||
|
case 1: mimeType is NULL =>
|
||||||
|
Should return B_BAD_VALUE.
|
||||||
|
case 2: mimeType is invalid =>
|
||||||
|
Should return B_BAD_VALUE.
|
||||||
|
case 3: common cases (all)
|
||||||
|
case 4: installed type mimeType, preferred app, app type not installed,
|
||||||
|
app has signature, NULL messageList =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should install the app type and set the
|
||||||
|
app hint on it.
|
||||||
|
case 5: installed type mimeType, preferred app, app type not installed,
|
||||||
|
app has signature, empty messageList =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should install the app type and set the
|
||||||
|
app hint on it.
|
||||||
|
|
||||||
status_t Launch(const char *mimeType, int argc, char **args,
|
status_t Launch(const char *mimeType, int argc, char **args,
|
||||||
team_id *appTeam) const
|
team_id *appTeam) const
|
||||||
|
case 1: mimeType is NULL or argc > 0 and args is NULL =>
|
||||||
|
Should return B_BAD_VALUE.
|
||||||
|
case 2: mimeType is invalid =>
|
||||||
|
Should return B_BAD_VALUE.
|
||||||
|
case 3: common cases (all)
|
||||||
|
case 4: installed type mimeType, preferred app, app type not installed,
|
||||||
|
app has signature, NULL args, argc is 0 =>
|
||||||
|
Should return B_OK and set team to the ID of the team running
|
||||||
|
the application's executable. Should install the app type and set the
|
||||||
|
app hint on it.
|
||||||
|
|
||||||
status_t Launch(const entry_ref *ref, const BMessage *initialMessage,
|
status_t Launch(const entry_ref *ref, const BMessage *initialMessage,
|
||||||
team_id *app_team) const
|
team_id *app_team) const
|
||||||
|
case 1: ref is NULL =>
|
||||||
|
Should return B_BAD_VALUE.
|
||||||
|
case 2: ref doesn't refer to an existing entry =>
|
||||||
|
Should return B_ENTRY_NOT_FOUND.
|
||||||
|
case 3: ref is valid, file has type and preferred app, app type is not
|
||||||
|
installed, app exists and has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
file's (not the file type's) preferred application's executable.
|
||||||
|
Should install the app type and set the app hint on it.
|
||||||
|
case 4: ref is valid, file has no type, but preferred app, app type is not
|
||||||
|
installed, app exists and has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should install the app type and set the app
|
||||||
|
hint on it.
|
||||||
|
case 5: ref is valid, file has type and app hint, the type's preferred app
|
||||||
|
type is not installed, app exists and has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the file
|
||||||
|
type's preferred application's executable. Should install the app
|
||||||
|
type and set the app hint on it.
|
||||||
|
case 6: ref is valid, file has type, the type's preferred app
|
||||||
|
type is not installed, app exists and has signature, file is
|
||||||
|
executable =>
|
||||||
|
Should return B_LAUNCH_FAILED_EXECUTABLE.
|
||||||
|
Should not set the app hint on the app or file type.
|
||||||
|
case 7: ref is valid and refers to a link to a file, file has type,
|
||||||
|
the type's preferred app type is not installed,
|
||||||
|
app exists and has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the file
|
||||||
|
type's preferred application's executable. Should install the app
|
||||||
|
type and set the app hint on it.
|
||||||
|
case 8: ref is valid, file has type,
|
||||||
|
common cases 1-14
|
||||||
|
case 9: ref is valid, file has no type, sniffing results in a type,
|
||||||
|
type is set on file,
|
||||||
|
common cases 2-14
|
||||||
|
case 10:ref is valid, file has no type, but preferred app, app type is not
|
||||||
|
installed, app exists and has signature, NULL initialMessage =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should install the app type and set the app
|
||||||
|
hint on it.
|
||||||
|
|
||||||
status_t Launch(const entry_ref *ref, const BList *messageList,
|
status_t Launch(const entry_ref *ref, const BList *messageList,
|
||||||
team_id *appTeam) const
|
team_id *appTeam) const
|
||||||
|
case 1: ref is NULL =>
|
||||||
|
Should return B_BAD_VALUE.
|
||||||
|
case 2: ref doesn't refer to an existing entry =>
|
||||||
|
Should return B_ENTRY_NOT_FOUND.
|
||||||
|
case 3: ref is valid, file has type and preferred app, app type is not
|
||||||
|
installed, app exists and has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
file's (not the file type's) preferred application's executable.
|
||||||
|
Should install the app type and set the app hint on it.
|
||||||
|
case 4: ref is valid, file has no type, but preferred app, app type is not
|
||||||
|
installed, app exists and has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should install the app type and set the app
|
||||||
|
hint on it.
|
||||||
|
case 5: ref is valid, file has type and app hint, the type's preferred app
|
||||||
|
type is not installed, app exists and has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the file
|
||||||
|
type's preferred application's executable. Should install the app
|
||||||
|
type and set the app hint on it.
|
||||||
|
case 6: ref is valid, file has type, the type's preferred app
|
||||||
|
type is not installed, app exists and has signature, file is
|
||||||
|
executable =>
|
||||||
|
Should return B_LAUNCH_FAILED_EXECUTABLE.
|
||||||
|
Should not set the app hint on the app or file type.
|
||||||
|
case 7: ref is valid and refers to a link to a file, file has type,
|
||||||
|
the type's preferred app type is not installed,
|
||||||
|
app exists and has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the file
|
||||||
|
type's preferred application's executable. Should install the app
|
||||||
|
type and set the app hint on it.
|
||||||
|
case 8: ref is valid, file has type,
|
||||||
|
common cases 1-14
|
||||||
|
case 9: ref is valid, file has no type, sniffing results in a type,
|
||||||
|
type is set on file,
|
||||||
|
common cases 2-14
|
||||||
|
case 10:ref is valid, file has no type, but preferred app, app type is not
|
||||||
|
installed, app exists and has signature, NULL messageList =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should install the app type and set the app
|
||||||
|
hint on it.
|
||||||
|
case 11:ref is valid, file has no type, but preferred app, app type is not
|
||||||
|
installed, app exists and has signature, empty messageList =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should install the app type and set the app
|
||||||
|
hint on it.
|
||||||
|
|
||||||
status_t Launch(const entry_ref *ref, int argc, const char * const *args,
|
status_t Launch(const entry_ref *ref, int argc, const char * const *args,
|
||||||
team_id *appTeam) const
|
team_id *appTeam) const
|
||||||
|
case 1: ref is NULL =>
|
||||||
|
Should return B_BAD_VALUE.
|
||||||
|
case 2: ref doesn't refer to an existing entry =>
|
||||||
|
Should return B_ENTRY_NOT_FOUND.
|
||||||
|
case 3: ref is valid, file has type and preferred app, app type is not
|
||||||
|
installed, app exists and has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
file's (not the file type's) preferred application's executable.
|
||||||
|
Should install the app type and set the app hint on it.
|
||||||
|
ref is converted to path and added as additional argv.
|
||||||
|
case 4: ref is valid, file has no type, but preferred app, app type is not
|
||||||
|
installed, app exists and has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should install the app type and set the app
|
||||||
|
hint on it.
|
||||||
|
ref is converted to path and added as additional argv.
|
||||||
|
case 5: ref is valid, file has type and app hint, the type's preferred app
|
||||||
|
type is not installed, app exists and has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the file
|
||||||
|
type's preferred application's executable. Should install the app
|
||||||
|
type and set the app hint on it.
|
||||||
|
ref is converted to path and added as additional argv.
|
||||||
|
case 6: ref is valid, file has type, the type's preferred app
|
||||||
|
type is not installed, app exists and has signature, file is
|
||||||
|
executable =>
|
||||||
|
Should return B_LAUNCH_FAILED_EXECUTABLE.
|
||||||
|
Should not set the app hint on the app or file type.
|
||||||
|
case 7: ref is valid and refers to a link to a file, file has type,
|
||||||
|
the type's preferred app type is not installed,
|
||||||
|
app exists and has signature =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the file
|
||||||
|
type's preferred application's executable. Should install the app
|
||||||
|
type and set the app hint on it.
|
||||||
|
ref is converted to path and added as additional argv.
|
||||||
|
case 8: ref is valid, file has type,
|
||||||
|
common cases 1-14
|
||||||
|
(ref is converted to path and added as additional argv.)
|
||||||
|
case 9: ref is valid, file has no type, sniffing results in a type,
|
||||||
|
type is set on file,
|
||||||
|
common cases 2-14
|
||||||
|
(ref is converted to path and added as additional argv.)
|
||||||
|
case 10:ref is valid, file has no type, but preferred app, app type is not
|
||||||
|
installed, app exists and has signature, NULL args, argc is 0 =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should install the app type and set the app
|
||||||
|
hint on it. argv are ignored.
|
||||||
|
case 11:ref is valid, file has no type, but preferred app, app type is not
|
||||||
|
installed, app exists and has signature, NULL args, argc > 0 =>
|
||||||
|
Should return B_OK and set team to the ID of the team running the
|
||||||
|
application's executable. Should install the app type and set the app
|
||||||
|
hint on it. argv are ignored.
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -32,17 +32,53 @@ class LaunchTester : public BTestCase
|
|||||||
void LaunchTestA1();
|
void LaunchTestA1();
|
||||||
void LaunchTestA2();
|
void LaunchTestA2();
|
||||||
void LaunchTestA3();
|
void LaunchTestA3();
|
||||||
|
void LaunchTestA4();
|
||||||
|
|
||||||
// void LaunchTestB1();
|
void LaunchTestB1();
|
||||||
// void LaunchTestB2();
|
void LaunchTestB2();
|
||||||
// void LaunchTestB3();
|
void LaunchTestB3();
|
||||||
// void LaunchTestB4();
|
void LaunchTestB4();
|
||||||
// void LaunchTestB5();
|
void LaunchTestB5();
|
||||||
// void LaunchTestB6();
|
|
||||||
// void LaunchTestB7();
|
void LaunchTestC1();
|
||||||
// void LaunchTestB8();
|
void LaunchTestC2();
|
||||||
// void LaunchTestB9();
|
void LaunchTestC3();
|
||||||
// void LaunchTestB10();
|
void LaunchTestC4();
|
||||||
|
|
||||||
|
void LaunchTestD1();
|
||||||
|
void LaunchTestD2();
|
||||||
|
void LaunchTestD3();
|
||||||
|
void LaunchTestD4();
|
||||||
|
void LaunchTestD5();
|
||||||
|
void LaunchTestD6();
|
||||||
|
void LaunchTestD7();
|
||||||
|
void LaunchTestD8();
|
||||||
|
void LaunchTestD9();
|
||||||
|
void LaunchTestD10();
|
||||||
|
|
||||||
|
void LaunchTestE1();
|
||||||
|
void LaunchTestE2();
|
||||||
|
void LaunchTestE3();
|
||||||
|
void LaunchTestE4();
|
||||||
|
void LaunchTestE5();
|
||||||
|
void LaunchTestE6();
|
||||||
|
void LaunchTestE7();
|
||||||
|
void LaunchTestE8();
|
||||||
|
void LaunchTestE9();
|
||||||
|
void LaunchTestE10();
|
||||||
|
void LaunchTestE11();
|
||||||
|
|
||||||
|
void LaunchTestF1();
|
||||||
|
void LaunchTestF2();
|
||||||
|
void LaunchTestF3();
|
||||||
|
void LaunchTestF4();
|
||||||
|
void LaunchTestF5();
|
||||||
|
void LaunchTestF6();
|
||||||
|
void LaunchTestF7();
|
||||||
|
void LaunchTestF8();
|
||||||
|
void LaunchTestF9();
|
||||||
|
void LaunchTestF10();
|
||||||
|
void LaunchTestF11();
|
||||||
|
|
||||||
static Test* Suite();
|
static Test* Suite();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user